export type AutocompleteValue = string; export type Suggestion = any; export type FetchSuggestionsCallback = (data: T[]) => void; export type FetchSuggestions = (query: string, callback: FetchSuggestionsCallback) => void; export type DebounceGetSuggestions = (value: string) => void;