import { QueryInterchainAccountRequest, QueryInterchainAccountResponse, QueryParamsRequest, QueryParamsResponse } from "./query.js"; import { EndpointOrRpc } from "../../../../../helper-func-types.js"; import "../../../../../index.js"; //#region src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts /** * InterchainAccount returns the interchain account address for a given owner address on a given connection * @name getInterchainAccount * @package ibc.applications.interchain_accounts.controller.v1 * @see proto service: ibc.applications.interchain_accounts.controller.v1.InterchainAccount */ declare const getInterchainAccount: (client: EndpointOrRpc, request: QueryInterchainAccountRequest) => Promise; /** * Params queries all parameters of the ICA controller submodule. * @name getParams * @package ibc.applications.interchain_accounts.controller.v1 * @see proto service: ibc.applications.interchain_accounts.controller.v1.Params */ declare const getParams: (client: EndpointOrRpc, request: QueryParamsRequest) => Promise; //#endregion export { getInterchainAccount, getParams };