export declare type Variant = 'solid' | 'outlined' | 'transparent'; export declare type Type = string; export declare type Size = 'default' | 'small' | 'medium' | 'large'; export declare type ColorProps = { color: string; backgroundColor: string; borderColor: string; hoverColor: string; hoverBackgroundColor: string; hoverBorderColor: string; activeColor: string; activeBackgroundColor: string; activeBorderColor: string; }; export declare type SizeProps = { fontSize: string; loadingSize: string; padding: string; width: string; height: string; minWidth: string; iconGap: string; }; export declare type ShapeProps = { borderRadius: string; }; export declare type CustomStyles = Partial;