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