export type SwitchSize = "basic" | "compact"; type Omit = Pick>; type HTMLInputProps = Omit, "size">; export interface ISwitchProps extends HTMLInputProps { defaultOn?: boolean; on?: boolean; innerRef?: | React.Ref | React.Ref>; size?: SwitchSize; name?: string; } export var Switch: React.ComponentType;