export interface AsyncAutoCompleteProps { labelField: K; selectField: K; fetchAPI: (inputValue: string, callback: (results: readonly T[]) => void) => Promise; value: string | null; onChange: (value: any) => void; label: string; }