import * as React from 'react'; import type { DataType, EventsType } from '../../../configs/components/form-checkbox'; import type { CommonPropsType } from '../../types'; export type PropsType = CommonPropsType & DataType & { onChange: (v: string[]) => void; disabled: boolean; readOnly: boolean; } & EventsType; declare const FormCheckbox: React.ForwardRefExoticComponent>; export default FormCheckbox;