export type TypeSwitchValues = { [key in 'primary' | 'success' | 'danger' | 'gray' | 'ghost']: string; }; export type ViewSwitchValues = { default: TypeSwitchValues; transparent: TypeSwitchValues; outline: TypeSwitchValues; }; export type SizeSwitchValues = { icon: { [key in 'sm' | 'md' | 'lg' | 'xl']: string; }; button: { [key in 'sm' | 'md' | 'lg' | 'xl']: string; }; }; export type DisabledViewSwitchValues = { default: string; transparent: string; outline: string; }