/// declare type SwitchProps = { name: string; label?: string; value?: boolean; onChange?: (checked: boolean) => void; direction?: 'vertical' | 'horizontal'; disabled?: boolean; }; export declare function Switch({ name, label, disabled, value, onChange, direction, }: SwitchProps): JSX.Element; export {};