import { LCDClient } from "@cosmology/lcd"; import { QueryEpochsInfoRequest, QueryEpochsInfoResponseSDKType, QueryCurrentEpochRequest, QueryCurrentEpochResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; constructor({ requestClient }: { requestClient: LCDClient; }); epochInfos(_params?: QueryEpochsInfoRequest): Promise; currentEpoch(params: QueryCurrentEpochRequest): Promise; }