declare class ButtonColor { outlinedText: string; filledText: string; filledBg: string; outlinedHoverBg: string; filledHoverBg: string; focusRing: string; outlinedBorder: string; outlinedHoverText: string; constructor(outlinedText: string, filledText: string, filledBg: string, outlinedHoverBg: string, filledHoverBg: string, focusRing: string, outlinedBorder: string, outlinedHoverText: string); } declare class ProgressColor { text: string; bg: string; constructor(text: string, bg: string); } export declare const CB3Theme: { name: string; description: string; size: { xs: { text: string; height: string; }; sm: { text: string; height: string; }; md: { text: string; height: string; }; lg: { text: string; height: string; }; xl: { text: string; height: string; }; '2xl': { text: string; height: string; }; '3xl': { text: string; height: string; }; '4xl': { text: string; height: string; }; '5xl': { text: string; height: string; }; '6xl': { text: string; height: string; }; }; weight: { thin: string; extralight: string; light: string; normal: string; medium: string; semibold: string; bold: string; extrabold: string; black: string; }; component: { button: { style: string; color: { primary: ButtonColor; secondary: ButtonColor; regular: ButtonColor; info: ButtonColor; success: ButtonColor; warning: ButtonColor; error: ButtonColor; }; options: { rounded: string; pill: string; icon: string[]; transition: string; }; default: { rounded: boolean; pill: boolean; icon: boolean; transition: boolean; weight: string; size: string; color: string; }; }; progress: { style: { bar: string; progressLabel: string; }; color: { primary: ProgressColor; secondary: ProgressColor; regular: ProgressColor; info: ProgressColor; success: ProgressColor; warning: ProgressColor; error: ProgressColor; }; options: { rounded: string; }; default: { rounded: boolean; weight: string; size: string; color: string; }; }; card: { style: string; options: { rounded: string; border: string; shadow: string; }; default: { rounded: boolean; border: boolean; shadow: boolean; }; }; alert: { style: string; color: { primary: { div: string; }; secondary: { div: string; }; regular: { div: string; }; info: { div: string; }; success: { div: string; }; warning: { div: string; }; error: { div: string; }; }; options: { rounded: string; border: string; }; default: { rounded: boolean; border: boolean; size: string; color: string; }; }; }; }; export {};