import { FC } from 'react'; interface IDataItem { value: string; label: string; } declare enum OrderByDirection { ASC = "asc", DESC = "desc" } interface AutocompleteFieldProps { items: IDataItem[]; readOnly?: boolean; name: string; required?: boolean; label: string; loading?: boolean; placeholder?: string; description?: string; value: string; multiple?: boolean; onSearch: (condition: SearchCondition) => void; onChange: (value: string) => void; } interface SearchCondition { keywords: string | null; limit: number | null; offSet: number | null; orderBy: OrderByDirection; recordCount?: boolean; orderByPropertyNames: string[]; tags: string[]; } export declare const AutocompleteField: FC; export default AutocompleteField;