import * as React from 'react'; import { Interpolation } from '@emotion/react'; import { ThemeOptions } from './config'; export declare const html: (theme: ThemeOptions, enableColorScheme: boolean) => { colorScheme?: import("./config").PaletteMode | undefined; WebkitFontSmoothing: string; MozOsxFontSmoothing: string; boxSizing: string; WebkitTextSizeAdjust: string; }; export declare const basicTheme: (theme: ThemeOptions) => any; export declare const body: (theme: ThemeOptions) => any; export declare const styles: (theme: ThemeOptions, enableColorScheme?: boolean, container?: string, stylesProps?: Interpolation<{}>) => any; /** * Kickstart an elegant, consistent, and simple baseline to build upon. */ declare function CssBaseline(inProps: { children?: React.ReactNode; enableColorScheme?: boolean; container?: string; styles?: Interpolation<{}>; }): JSX.Element; export default CssBaseline;