import { FormControlProps } from '@mui/material'; import { ControllerProps } from 'react-hook-form'; import React from 'react'; import { SelectOption } from './SelectControl'; export type SelectGroupOption = SelectOption & { group: string; }; export type AutocompleteMultipleControlProps = Omit & { name: string; label?: string; defaultValue?: string; options: SelectGroupOption[]; disabled?: boolean; enableErrorMessage?: boolean; required?: boolean; rules?: ControllerProps['rules'] | undefined; size?: 'medium' | 'small'; }; declare const AutocompleteMultipleControl: ({ name, label, defaultValue, options, disabled, enableErrorMessage, required, rules, size, ...otherProps }: AutocompleteMultipleControlProps) => React.JSX.Element; export default AutocompleteMultipleControl; //# sourceMappingURL=AutocompleteMultipleControl.d.ts.map