import { QueryInterchainAccountRequest, QueryInterchainAccountResponse, QueryParamsRequest, QueryParamsResponse } from "./query.js"; import { LCDClient } from "@cosmology/lcd"; //#region src/ibc/applications/interchain_accounts/controller/v1/query.lcd.d.ts declare class LCDQueryClient { req: LCDClient; constructor({ requestClient }: { requestClient: LCDClient; }); interchainAccount: (params: QueryInterchainAccountRequest) => Promise; params: (_params?: QueryParamsRequest) => Promise; } //#endregion export { LCDQueryClient };