import { LCDClient } from "@cosmology/lcd"; import { QueryParamsRequest, QueryParamsResponseSDKType, QueryGetSpecRequest, QueryGetSpecResponseSDKType, QueryAllSpecRequest, QueryAllSpecResponseSDKType, QueryShowAllChainsRequest, QueryShowAllChainsResponseSDKType, QueryShowChainInfoRequest, QueryShowChainInfoResponseSDKType } from "./query"; export declare class LCDQueryClient { req: LCDClient; constructor({ requestClient }: { requestClient: LCDClient; }); params(_params?: QueryParamsRequest): Promise; spec(params: QueryGetSpecRequest): Promise; specAll(params?: QueryAllSpecRequest): Promise; specRaw(params: QueryGetSpecRequest): Promise; specAllRaw(params?: QueryAllSpecRequest): Promise; showAllChains(_params?: QueryShowAllChainsRequest): Promise; showChainInfo(params: QueryShowChainInfoRequest): Promise; }