import { MsgSubmitProposal, MsgVote, MsgVoteWeighted, MsgDeposit } from "./tx"; /** * SubmitProposal defines a method to create new proposal given a content. * @name submitProposal * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.SubmitProposal */ export declare const submitProposal: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgSubmitProposal | MsgSubmitProposal[], fee: import("../../..").StdFee | "auto", memo: string) => Promise; /** * 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 */ export declare const vote: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgVote | MsgVote[], fee: import("../../..").StdFee | "auto", memo: string) => Promise; /** * 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 */ export declare const voteWeighted: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgVoteWeighted | MsgVoteWeighted[], fee: import("../../..").StdFee | "auto", memo: string) => Promise; /** * Deposit defines a method to add deposit on a specific proposal. * @name deposit * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.Deposit */ export declare const deposit: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgDeposit | MsgDeposit[], fee: import("../../..").StdFee | "auto", memo: string) => Promise;