import { AutoCompleteProps, FormItemProps } from 'antd'; import { FC } from 'react'; declare const FormAutoComplete: FC<{ andtFormItemProps?: FormItemProps; antdAutoCompleteProps?: AutoCompleteProps; name: string | number | (string | number)[]; title?: string; disabled?: boolean; optionalTitle?: string; required?: boolean; requiredErrorMessage?: string; tooltipContent?: string; }>; export default FormAutoComplete;