declare type Style = { style?: any; class?: any; }; export declare const colorable: ({ textColor }: { textColor?: string; }) => { setBackgroundColor: (color: string | any[], data?: Style) => Style; setTextColor: (color: string | string[], data?: any) => Style; }; export {};