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