export type SwitchProps = {
    value: boolean;
    onChange: (value: boolean) => void;
    disabled?: boolean;
};
export declare function Switch({ value, disabled, onChange }: SwitchProps): JSX.Element;
