import { MsgSubmitProposal, MsgVote, MsgVoteWeighted, MsgDeposit } from "./tx"; /** * SubmitProposal defines a method to create new proposal given a content. * @name useSubmitProposal * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.SubmitProposal */ export declare const useSubmitProposal: ({ options, clientResolver }: import("../../../react-query").ReactMutationParams, unknown>) => import("@tanstack/react-query").UseMutationResult, unknown>; /** * Vote defines a method to add a vote on a specific proposal. * @name useVote * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.Vote */ export declare const useVote: ({ options, clientResolver }: import("../../../react-query").ReactMutationParams, unknown>) => import("@tanstack/react-query").UseMutationResult, unknown>; /** * VoteWeighted defines a method to add a weighted vote on a specific proposal. * @name useVoteWeighted * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.VoteWeighted */ export declare const useVoteWeighted: ({ options, clientResolver }: import("../../../react-query").ReactMutationParams, unknown>) => import("@tanstack/react-query").UseMutationResult, unknown>; /** * Deposit defines a method to add deposit on a specific proposal. * @name useDeposit * @package cosmos.gov.v1beta1 * @see proto service: cosmos.gov.v1beta1.Deposit */ export declare const useDeposit: ({ options, clientResolver }: import("../../../react-query").ReactMutationParams, unknown>) => import("@tanstack/react-query").UseMutationResult, unknown>;