import * as CSS from 'csstype'; /** * Typing for the interpolations. */ export type BasicTemplateInterpolations = string | number; /** * These are all the CSS props that will exist. */ export type CSSProps = CSS.Properties; export type AnyKeyCssProps = { [key: string]: AnyKeyCssProps | CSSProps | string | number | TValue; }; export type CssFunction = | CSSProps | AnyKeyCssProps | TemplateStringsArray | string;