import { StdFee } from "../../../types.js"; import { MsgDeposit, MsgSubmitProposal, MsgVote, MsgVoteWeighted } from "./tx.js"; import "../../../index.js"; import * as _interchainjs_cosmos0 from "@interchainjs/cosmos"; import * as _interchainjs_types0 from "@interchainjs/types"; //#region src/cosmos/gov/v1beta1/tx.rpc.func.d.ts /** * SubmitProposal defines a method to create new proposal given a content. * @name submitProposal * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.SubmitProposal */ declare const submitProposal: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; /** * Vote defines a method to add a vote on a specific proposal. * @name vote * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.Vote */ declare const vote: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; /** * VoteWeighted defines a method to add a weighted vote on a specific proposal. * @name voteWeighted * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.VoteWeighted */ declare const voteWeighted: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgVoteWeighted | MsgVoteWeighted[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; /** * Deposit defines a method to add deposit on a specific proposal. * @name deposit * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.Deposit */ declare const deposit: (client: _interchainjs_cosmos0.ISigningClient, signerAddress: string, message: MsgDeposit | MsgDeposit[], fee: StdFee | "auto", memo: string) => Promise<_interchainjs_types0.DeliverTxResponse>; //#endregion export { deposit, submitProposal, vote, voteWeighted };