import * as React from 'react'; import { StyledComponentProps } from '@material-ui/core/styles'; export interface CssBaselineProps extends StyledComponentProps { /** * You can wrap a node. * @default null */ children?: React.ReactNode; } /** * Kickstart an elegant, consistent, and simple baseline to build upon. * Demos: * * - [Css Baseline](https://material-ui.com/components/css-baseline/) * * API: * * - [CssBaseline API](https://material-ui.com/api/css-baseline/) */ export default function CssBaseline(props: CssBaselineProps): JSX.Element;