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