import { GlobalStylesProps as StyledGlobalStylesProps } from '@u_ui/system'; import { Theme } from '../styles'; export interface GlobalStylesProps { /** * The styles you want to apply globally. */ styles: StyledGlobalStylesProps['styles']; } export default function GlobalStyles(props: GlobalStylesProps): React.ReactElement;