///
import type { SwitchChangeEventHandler } from 'rc-switch';
import { TBaseInputProps, TBaseProps } from '../types';
import '../styles/controls/Switch.scss';
export declare type Props = TBaseProps & TBaseInputProps & {
checked?: boolean;
label?: string;
onChange?: SwitchChangeEventHandler;
};
export declare const Switch: ({ disabled, value, checked, onChange, label, id }: Props) => JSX.Element;