///
import type { SwitchProps } from '@toptal/picasso-switch';
import type { FieldProps } from '../Field';
import type { Props as FieldLabelProps } from '../FieldLabel';
export declare type FormSwitchProps = Omit & {
onChange?: SwitchProps['onChange'];
value?: string;
};
export declare type Props = FormSwitchProps & FieldProps & Omit;
export declare const Switch: {
(props: Props): JSX.Element;
displayName: string;
};
export default Switch;
//# sourceMappingURL=Switch.d.ts.map