import { AutocompleteSuggestion } from '@dynatrace-sdk/client-query'; export type SuggestionCache = Map; /** * Gets memoized suggestions. The `cache` is owned by the calling editor * instance so entries never outlive the editor or leak between editors. */ export declare const getSuggestions: (query: string, cursor: number | undefined, maxDataSuggestions: number | undefined, cache: SuggestionCache) => Promise; //# sourceMappingURL=get-suggestions.d.ts.map