import { TxRpc } from "../../../types.js"; import { MsgBurn, MsgBurnResponse } from "./tx.js"; //#region src/xpla/burn/v1beta1/tx.rpc.msg.d.ts /** Msg defines the burn service. */ interface Msg { /** Burn defines a method for burning coins from an account. */ burn(request: MsgBurn): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); burn: (request: MsgBurn) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };