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