import { Properties } from 'csstype'; export declare type WithCustomStyles = T & { customStyles?: Properties; }; export declare type Gradient = { to?: string; from?: string; flow?: 'to right' | 'to bottom right' | 'to top right' | 'to left' | 'to top left' | 'to top right' | 'to bottom left'; covenant?: GradientCovenant; }; export declare type GradientCovenant = { overrideAndDangerouslySetGradient: string; }; export declare type BgCovenant = { overrideAndDangerouslySetBg: string; };