@mui/styles
Version:
MUI Styles - The legacy JSS-based styling solution of Material UI.
12 lines (9 loc) • 373 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<any>;
}
export default ServerStyleSheets;