import { TxRpc } from "../../../types.js"; import { MsgUpdateParams, MsgUpdateParamsResponse } from "./tx.js"; //#region src/cosmos/mint/v1beta1/tx.rpc.msg.d.ts /** Msg defines the x/mint Msg service. */ interface Msg { /** * UpdateParams defines a governance operation for updating the x/mint module * parameters. The authority is defaults to the x/gov module account. */ updateParams(request: MsgUpdateParams): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); updateParams: (request: MsgUpdateParams) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };