interface Props { value?: boolean; onChange: (value: boolean) => void; } export declare function Switch(props: Props): JSX.Element; export {};