@emotion/react
Version:
> Simple styling in React.
8 lines (7 loc) • 340 B
TypeScript
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>>;