import { CancellationToken, ExecuteCommandParams } from 'vscode-languageserver'; import { LanguageServerInterface } from '../common/languageServerInterface'; import { ServerCommand } from './commandController'; export declare class QuickActionCommand implements ServerCommand { private _ls; constructor(_ls: LanguageServerInterface); execute(params: ExecuteCommandParams, token: CancellationToken): Promise; }