import type * as React from 'react'; import { type CSSObject, type StyleFunction } from 'styled-components'; export interface GlobalStylesProps { defaultTheme?: object | undefined; styles: string | CSSObject | StyleFunction; } declare const GlobalStyles: (props: GlobalStylesProps) => React.JSX.Element; export default GlobalStyles;