import { LSPAny, SymbolKind, WorkDoneProgressReporter } from 'vscode-languageserver'; import { Declaration } from '../analyzer/declaration'; import { TypeEvaluator } from '../analyzer/typeEvaluatorTypes'; export declare function toLSPAny(obj: any): LSPAny; export declare function fromLSPAny(lspAny: LSPAny | undefined): T; export declare function getSymbolKind(declaration: Declaration, evaluator?: TypeEvaluator, name?: string): SymbolKind | undefined; export declare function isNullProgressReporter(reporter: WorkDoneProgressReporter): boolean;