1 2 3 4 5 6 7
import * as React from 'react'; import { Interpolation } from '@emotion/react'; export interface GlobalStylesProps<Theme = {}> { defaultTheme?: object | undefined; styles: Interpolation<Theme>; } export default function GlobalStyles<Theme = {}>(props: GlobalStylesProps<Theme>): React.JSX.Element;