import { QueryConnectionRequest, QueryConnectionResponse, QueryConnectionsRequest, QueryConnectionsResponse, QueryClientConnectionsRequest, QueryClientConnectionsResponse, QueryConnectionClientStateRequest, QueryConnectionClientStateResponse, QueryConnectionConsensusStateRequest, QueryConnectionConsensusStateResponse, QueryConnectionParamsRequest, QueryConnectionParamsResponse } from "./query"; /** * Connection queries an IBC connection end. * @name getConnection * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.Connection */ export declare const getConnection: (client: import("../../../../helper-func-types").EndpointOrRpc, request: QueryConnectionRequest) => Promise; /** * Connections queries all the IBC connections of a chain. * @name getConnections * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.Connections */ export declare const getConnections: (client: import("../../../../helper-func-types").EndpointOrRpc, request: QueryConnectionsRequest) => Promise; /** * ClientConnections queries the connection paths associated with a client * state. * @name getClientConnections * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ClientConnections */ export declare const getClientConnections: (client: import("../../../../helper-func-types").EndpointOrRpc, request: QueryClientConnectionsRequest) => Promise; /** * ConnectionClientState queries the client state associated with the * connection. * @name getConnectionClientState * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ConnectionClientState */ export declare const getConnectionClientState: (client: import("../../../../helper-func-types").EndpointOrRpc, request: QueryConnectionClientStateRequest) => Promise; /** * ConnectionConsensusState queries the consensus state associated with the * connection. * @name getConnectionConsensusState * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ConnectionConsensusState */ export declare const getConnectionConsensusState: (client: import("../../../../helper-func-types").EndpointOrRpc, request: QueryConnectionConsensusStateRequest) => Promise; /** * ConnectionParams queries all parameters of the ibc connection submodule. * @name getConnectionParams * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ConnectionParams */ export declare const getConnectionParams: (client: import("../../../../helper-func-types").EndpointOrRpc, request: QueryConnectionParamsRequest) => Promise;