import { CompletionItem } from 'vscode-languageserver'; import { Node } from 'yaml'; /** * A function that computes the possible variable auto-completions scope-wise for a given position * @param documentUri - uri of the document * @param path - array of nodes leading to that position * @returns a list of completion items */ declare function getVarsCompletion(documentUri: string, path: Node[]): CompletionItem[]; export { getVarsCompletion };