import { TxRpc } from "../../../types.js"; import { MsgDeposit, MsgDepositResponse, MsgSubmitProposal, MsgSubmitProposalResponse, MsgVote, MsgVoteResponse, MsgVoteWeighted, MsgVoteWeightedResponse } from "./tx.js"; //#region src/cosmos/gov/v1beta1/tx.rpc.msg.d.ts /** Msg defines the gov Msg service. */ interface Msg { /** SubmitProposal defines a method to create new proposal given a content. */ submitProposal(request: MsgSubmitProposal): Promise; /** Vote defines a method to add a vote on a specific proposal. */ vote(request: MsgVote): Promise; /** VoteWeighted defines a method to add a weighted vote on a specific proposal. */ voteWeighted(request: MsgVoteWeighted): Promise; /** Deposit defines a method to add deposit on a specific proposal. */ deposit(request: MsgDeposit): Promise; } declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: TxRpc); submitProposal: (request: MsgSubmitProposal) => Promise; vote: (request: MsgVote) => Promise; voteWeighted: (request: MsgVoteWeighted) => Promise; deposit: (request: MsgDeposit) => Promise; } declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl; //#endregion export { Msg, MsgClientImpl, createClientImpl };