mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
12 lines
368 B
TypeScript
12 lines
368 B
TypeScript
|
import * as React from 'react';
|
||
|
import { StylesProviderProps } from '../StylesProvider';
|
||
|
|
||
|
declare class ServerStyleSheets {
|
||
|
constructor(options?: object);
|
||
|
collect(children: React.ReactNode, options?: object): React.ReactElement<StylesProviderProps>;
|
||
|
toString(): string;
|
||
|
getStyleElement(props?: object): React.ReactElement;
|
||
|
}
|
||
|
|
||
|
export default ServerStyleSheets;
|