1 2 3 4 5 6 7
import * as React from 'react'; import { Theme } from "./theming.js"; import { Interpolation } from '@emotion/serialize'; export interface GlobalProps { styles: Interpolation<Theme>; } export declare let Global: React.FC<GlobalProps & React.RefAttributes<any>> | React.ForwardRefExoticComponent<GlobalProps & React.RefAttributes<any>>;