import { QueryAnnualProvisionsRequest, QueryAnnualProvisionsResponse, QueryInflationRequest, QueryInflationResponse, QueryParamsRequest, QueryParamsResponse } from "./query.js"; import { EndpointOrRpc } from "../../../helper-func-types.js"; import "../../../index.js"; //#region src/cosmos/mint/v1beta1/query.rpc.func.d.ts /** * Params returns the total set of minting parameters. * @name getParams * @package cosmos.mint.v1beta1 * @see proto service: cosmos.mint.v1beta1.Params */ declare const getParams: (client: EndpointOrRpc, request: QueryParamsRequest) => Promise; /** * Inflation returns the current minting inflation value. * @name getInflation * @package cosmos.mint.v1beta1 * @see proto service: cosmos.mint.v1beta1.Inflation */ declare const getInflation: (client: EndpointOrRpc, request: QueryInflationRequest) => Promise; /** * AnnualProvisions current minting annual provisions value. * @name getAnnualProvisions * @package cosmos.mint.v1beta1 * @see proto service: cosmos.mint.v1beta1.AnnualProvisions */ declare const getAnnualProvisions: (client: EndpointOrRpc, request: QueryAnnualProvisionsRequest) => Promise; //#endregion export { getAnnualProvisions, getInflation, getParams };