import * as React from 'react'; import { Interpolation } from '@mui/styled-engine'; import { Theme as SystemTheme } from '../createTheme'; export interface GlobalStylesProps { styles: Interpolation; defaultTheme?: object; themeId?: string; } declare function GlobalStyles({ styles, themeId, defaultTheme, }: GlobalStylesProps): React.JSX.Element; declare namespace GlobalStyles { var propTypes: any; } export default GlobalStyles;