/// <reference types="react" />
import { SwitchProps } from '../../Switch';
declare const FormSwitch: ({ value, onChange, ...others }: SwitchProps & {
    onChange?: ((value: boolean) => void) | undefined;
    value?: boolean | undefined;
}) => JSX.Element;
export default FormSwitch;
