export declare const ButtonSizes: { readonly xs: "xs"; readonly sm: "sm"; readonly md: "md"; readonly lg: "lg"; readonly xl: "xl"; readonly xxl: "xxl"; readonly responsiveContainer: "responsive-container"; readonly responsiveText: "responsive-text"; }; export type ButtonSizes = (typeof ButtonSizes)[keyof typeof ButtonSizes]; export declare const ButtonColors: { readonly danger: "danger"; readonly success: "success"; readonly primary: "primary"; readonly secondary: "secondary"; }; export type ButtonColors = (typeof ButtonColors)[keyof typeof ButtonColors];