import { Connection, Disposable } from 'vscode-languageserver'; import { DynamicFeature } from './dynamicFeature'; import { ServerSettings } from '../common/languageServerInterface'; export declare class PullDiagnosticsDynamicFeature extends DynamicFeature { private readonly _connection; private readonly _id; private _workspaceSupport; private _registered; constructor(_connection: Connection, _id?: string); update(settings: ServerSettings): void; protected registerFeature(): Promise; }