import type { DataProvider } from './DataProvider'; import type { Situation } from './situation'; export declare type CompletionType = 'HISTORY' | 'FUNCTION' | 'METRIC_NAME' | 'DURATION' | 'LABEL_NAME' | 'LABEL_VALUE'; declare type Completion = { type: CompletionType; label: string; insertText: string; detail?: string; documentation?: string; triggerOnInsert?: boolean; }; export declare function getCompletions(situation: Situation, dataProvider: DataProvider): Promise; export {};