declare type SwitchProps = { checked?: boolean; onSwitch?: (checked?: boolean) => void; className?: string; }; export declare const Switch: (props: SwitchProps) => JSX.Element; export {};