export declare const ignoreKey: (key: string) => boolean; export declare class AutocompleteHelper { private readonly searchCallback; private keywordsCache; constructor(searchCallback: (value: string) => Promise); getSuggestions(value: string): Promise; }