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