import * as React from 'react'; import type { DataType, EventsType } from '../../../configs/components/form-switch'; import type { CommonPropsType } from '../../types'; export type FormSwitchProps = CommonPropsType & DataType & { onChange: (v: DataType['value']) => void; disabled: boolean; readOnly: boolean; } & EventsType; declare const FormSwitch: React.ForwardRefExoticComponent & { onChange: (v: DataType['value']) => void; disabled: boolean; readOnly: boolean; } & import("type-fest").Simplify> & React.RefAttributes>; export default FormSwitch;