import { NotificationType, NotificationType0, RequestType0, RequestType } from 'vscode-jsonrpc'; import { Protocol } from './protocol'; export declare namespace Messages { namespace Server { namespace FindServerInstallationsRequest { const type: RequestType; } namespace GetDiscoveryPathsRequest { const type: RequestType0; } namespace AddDiscoveryPathRequest { const type: RequestType; } namespace RemoveDiscoveryPathRequest { const type: RequestType; } namespace GetServerHandlesRequest { const type: RequestType0; } namespace DeleteServerRequest { const type: RequestType; } namespace CreateServerRequest { const type: RequestType; } namespace StartServerAsyncRequest { const type: RequestType; } namespace StopServerAsyncRequest { const type: RequestType; } namespace ShutdownNotification { const type: NotificationType0; } } namespace Client { namespace DiscoveryPathAddedNotification { const type: NotificationType; } namespace DiscoveryPathRemovedNotification { const type: NotificationType; } namespace ServerAddedNotification { const type: NotificationType; } namespace ServerRemovedNotification { const type: NotificationType; } namespace ServerStateChangedNotification { const type: NotificationType; } namespace ServerProcessCreatedNotification { const type: NotificationType; } namespace ServerProcessTerminatedNotification { const type: NotificationType; } namespace ServerProcessOutputAppendedNotification { const type: NotificationType; } } }