import { Query, JsonRpcParams } from "./Query"; /** * Helper class that maintains the types in a list of Queries. * This allows the RpcDispatcher to return correctly typed responses. */ export declare class BatchQuery { queries: Query[]; private constructor(); add(q: Query): BatchQuery<[...TParams, TParam], [...TResponses, TResponse]>; static of(q: Query): BatchQuery<[TParams], [TResponse]>; } //# sourceMappingURL=BatchQuery.d.ts.map