import { Suggestion } from './types'; export declare const useDebounce: (value: string, delay: number) => string; export declare const useFilteredSuggestions: (input: string, suggestions: Suggestion[], matchFn?: (input: string, suggestion: Suggestion) => boolean) => Suggestion[];