/// export interface SwitchProps { checked?: boolean; disabled?: boolean; small?: boolean; onChange?: (e: any) => void; } declare const Switch: (props: SwitchProps) => JSX.Element; export default Switch;