import * as React from 'react'; export interface CssBaselineProps { children?: React.ReactNode; } export declare const body: () => { fontFamily: string; fontSize: string; lineHeight: string; WebkitFontSmoothing: string; MozOsxFontSmoothing: string; WebkitTextSizeAdjust: string; backgroundColor: string; color: string; }; export declare const styles: () => { 'html body': { margin: number; padding: number; minWidth: string; minHeight: string; }; '*, *::before, *::after': { boxSizing: string; }; body: { fontFamily: string; fontSize: string; lineHeight: string; WebkitFontSmoothing: string; MozOsxFontSmoothing: string; WebkitTextSizeAdjust: string; backgroundColor: string; color: string; }; 'p, h1, h2, h3, h4, h5, h6': { margin: number; }; 'ul, ol': { margin: number; padding: number; listStyle: string; }; }; export declare const CssBaseline: React.ForwardRefExoticComponent>;