import CheckboxGroup, { CheckboxGroupProps } from 'antd/lib/checkbox/Group'; import { RadioGroupProps } from 'antd/lib/radio'; import RadioGroup from 'antd/lib/radio/group'; import SelectAntD, { SelectProps as SelectAntDProps } from 'antd/lib/select'; import { Ref } from 'react'; import { FieldProps } from 'uniforms'; import type { Option } from './types'; type CheckboxesProps = FieldProps[]; checkboxes: true; inputRef?: Ref; required?: boolean; }>; type SelectProps = FieldProps, { options?: Option[]; checkboxes?: false; inputRef?: Ref; required?: boolean; }>; type SelectFieldValue = (string | undefined)[]; export type SelectFieldProps = CheckboxesProps | SelectProps; declare const _default: import("uniforms").ConnectedField; export default _default; //# sourceMappingURL=SelectField.d.ts.map