import { Rpc } from "@osmonauts/helpers"; import { QueryEpochsInfoRequest, QueryEpochsInfoResponse, QueryCurrentEpochRequest, QueryCurrentEpochResponse } from "./query"; /** Query defines the RPC service */ export interface Query { epochInfos(request: QueryEpochsInfoRequest): Promise; currentEpoch(request: QueryCurrentEpochRequest): Promise; } export declare class QueryClientImpl implements Query { private readonly rpc; constructor(rpc: Rpc); epochInfos(request: QueryEpochsInfoRequest): Promise; currentEpoch(request: QueryCurrentEpochRequest): Promise; }