export declare class Request { command: string; params: any; any: any; constructor(command: string, params: any); toJSON(): any; toString(): string; static Close(params: any): Request; static fromBuffer(buffer: any): Request; static CLOSE: string; static NO_COMMAND: string; }