import type { CheckboxProps } from '@mui/material/Checkbox'; import type { SelectProps as MaterialSelectProps } from '@mui/material/Select'; import type { SwitchProps } from '@mui/material/Switch'; import type { TextFieldProps } from '@mui/material/TextField'; import type { Ref } from 'react'; import type { 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; //# sourceMappingURL=SelectField.d.ts.map