export type SwitchValue = string | any;
export type SwitchVariant = 'primary' | 'success' | 'warning' | 'danger';
export interface SwitchValues {
    left: SwitchValue;
    right: SwitchValue;
}
