export declare type ButtonVariant = /** * @deprecated Use the 'default' variant and 'primary' style input instead */ 'primary' /** * @deprecated Use the 'default' variant and 'secondary' style input instead */ | 'secondary' /** * @deprecated Use the 'default' variant and 'warning' style input instead */ | 'warning' | 'default' | 'text' | 'icon'; export declare type ButtonStyle = 'primary' | 'secondary' | 'warning' | 'none' | undefined;