export declare type TVariant = { buttonBgColor?: string; buttonBgColorHover?: string; buttonFgColor?: string; buttonBorderColor?: string; alertIconBgColor?: string; alertIconFgColor?: string; }; export declare type TSize = { minWidth: string; height: string; fontSize: string; paddingLeft: string; paddingRight: string; }; export interface IVariant { [key: string]: TVariant; } export interface ISize { [key: string]: TSize; } export declare const variants: IVariant; export declare const sizes: ISize;