export interface ITypeSuggestions { values: { label: string; value: string; }[]; } export declare const useSuggestions: (typeSuggestions: ITypeSuggestions, handleSuggestion: (value: string) => void) => { suggestions: { label: string; value: string; }[]; showSuggestions: boolean; getNewSuggestions: (newInputValue: string) => void; handleSuggestionClick: (newValue: string) => void; }; //# sourceMappingURL=useSuggestions.d.ts.map