4 lines
282 B
TypeScript
4 lines
282 B
TypeScript
|
import React from 'react';
|
||
|
import { ExecutionProps, Interpolation, Styles } from '../types';
|
||
|
export default function createGlobalStyle<Props extends object>(strings: Styles<Props>, ...interpolations: Array<Interpolation<Props>>): React.NamedExoticComponent<ExecutionProps & Props>;
|