import * as React from 'react'; import { Interpolation } from '@emotion/react'; export interface GlobalStylesProps { defaultTheme?: object; styles: Interpolation; } export default function GlobalStyles(props: GlobalStylesProps): React.JSX.Element;