export declare class RPCBody {
    readonly method: string;
    readonly params: any[];
    readonly id: number;
    readonly jsonrpc: string;
    constructor(method: string, params: any[], id?: number, jsonrpc?: string);
}
