import { GetNodeInfoRequest, GetNodeInfoResponse, GetSyncingRequest, GetSyncingResponse, GetLatestBlockRequest, GetLatestBlockResponse, GetBlockByHeightRequest, GetBlockByHeightResponse, GetLatestValidatorSetRequest, GetLatestValidatorSetResponse, GetValidatorSetByHeightRequest, GetValidatorSetByHeightResponse, ABCIQueryRequest, ABCIQueryResponse } from "./query"; /** * GetNodeInfo queries the current node info. * @name useGetGetNodeInfo * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetNodeInfo */ export declare const useGetGetNodeInfo: ({ request, options, clientResolver, customizedQueryKey, }: import("../../../../react-query").UseQueryParams) => import("@tanstack/react-query").UseQueryResult; /** * GetSyncing queries node syncing. * @name useGetGetSyncing * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetSyncing */ export declare const useGetGetSyncing: ({ request, options, clientResolver, customizedQueryKey, }: import("../../../../react-query").UseQueryParams) => import("@tanstack/react-query").UseQueryResult; /** * GetLatestBlock returns the latest block. * @name useGetGetLatestBlock * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetLatestBlock */ export declare const useGetGetLatestBlock: ({ request, options, clientResolver, customizedQueryKey, }: import("../../../../react-query").UseQueryParams) => import("@tanstack/react-query").UseQueryResult; /** * GetBlockByHeight queries block for given height. * @name useGetGetBlockByHeight * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetBlockByHeight */ export declare const useGetGetBlockByHeight: ({ request, options, clientResolver, customizedQueryKey, }: import("../../../../react-query").UseQueryParams) => import("@tanstack/react-query").UseQueryResult; /** * GetLatestValidatorSet queries latest validator-set. * @name useGetGetLatestValidatorSet * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetLatestValidatorSet */ export declare const useGetGetLatestValidatorSet: ({ request, options, clientResolver, customizedQueryKey, }: import("../../../../react-query").UseQueryParams) => import("@tanstack/react-query").UseQueryResult; /** * GetValidatorSetByHeight queries validator-set at a given height. * @name useGetGetValidatorSetByHeight * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeight */ export declare const useGetGetValidatorSetByHeight: ({ request, options, clientResolver, customizedQueryKey, }: import("../../../../react-query").UseQueryParams) => import("@tanstack/react-query").UseQueryResult; /** * ABCIQuery defines a query handler that supports ABCI queries directly to the * application, bypassing Tendermint completely. The ABCI query must contain * a valid and supported path, including app, custom, p2p, and store. * @name useGetABCIQuery * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.ABCIQuery */ export declare const useGetABCIQuery: ({ request, options, clientResolver, customizedQueryKey, }: import("../../../../react-query").UseQueryParams) => import("@tanstack/react-query").UseQueryResult;