type ButtonWidthType = 'small' | 'medium' | 'large'; type ButtonVariantType = 'text' | 'outlined' | 'contained'; type ColorType = 'default' | 'inherit' | 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'error'; declare const colors: ColorType[]; declare const colorControls: { color: { control: string; options: ColorType[]; }; variant: { control: string; options: string[]; defaultValue: string; }; width: { control: string; options: string[]; defaultValue: string; }; fullwidth: { control: string; }; }; type INPUT_TYPE = 'text' | 'password' | 'textarea' | 'email' | 'number' | 'date' | 'time' | 'datetime-local' | 'month' | 'week' | 'url' | 'search' | 'tel' | 'color' | 'range' | 'file' | 'hidden'; export { colorControls, colors }; export type { ButtonVariantType, ButtonWidthType, ColorType, INPUT_TYPE };