import { CheckboxProps } from '@mui/material/Checkbox'; import { SelectProps as MaterialSelectProps } from '@mui/material/Select'; import { SwitchProps } from '@mui/material/Switch'; import { TextFieldProps } from '@mui/material/TextField'; import { Ref } from 'react'; import { FieldProps } from 'uniforms'; declare type SelectFieldCommonProps = { allowedValues?: string[]; appearance?: 'checkbox' | 'switch'; disableItem?: (value: string) => boolean; inputRef?: Ref; required?: boolean; transform?: (value: string) => string; }; declare type CheckboxesProps = FieldProps; declare type SelectProps = FieldProps; }>; export declare type SelectFieldProps = CheckboxesProps | SelectProps; declare const _default: import("uniforms").ConnectedField; export default _default;