import { Deposit, DepositAmino, Vote, VoteAmino, Proposal, ProposalAmino, DepositParams, DepositParamsAmino, VotingParams, VotingParamsAmino, TallyParams, TallyParamsAmino } from "./gov"; import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "atomone.gov.v1beta1"; /** GenesisState defines the gov module's genesis state. */ export interface GenesisState { /** starting_proposal_id is the ID of the starting proposal. */ startingProposalId: bigint; /** deposits defines all the deposits present at genesis. */ deposits: Deposit[]; /** votes defines all the votes present at genesis. */ votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; /** params defines all the parameters of related to deposit. */ depositParams: DepositParams | undefined; /** params defines all the parameters of related to voting. */ votingParams: VotingParams | undefined; /** params defines all the parameters of related to tally. */ tallyParams: TallyParams | undefined; } export interface GenesisStateProtoMsg { typeUrl: "/atomone.gov.v1beta1.GenesisState"; value: Uint8Array; } /** GenesisState defines the gov module's genesis state. */ export interface GenesisStateAmino { /** starting_proposal_id is the ID of the starting proposal. */ starting_proposal_id?: string; /** deposits defines all the deposits present at genesis. */ deposits: DepositAmino[]; /** votes defines all the votes present at genesis. */ votes: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals: ProposalAmino[]; /** params defines all the parameters of related to deposit. */ deposit_params: DepositParamsAmino | undefined; /** params defines all the parameters of related to voting. */ voting_params: VotingParamsAmino | undefined; /** params defines all the parameters of related to tally. */ tally_params: TallyParamsAmino | undefined; } export interface GenesisStateAminoMsg { type: "/atomone.gov.v1beta1.GenesisState"; value: GenesisStateAmino; } export declare const GenesisState: { typeUrl: string; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; fromAmino(object: GenesisStateAmino): GenesisState; toAmino(message: GenesisState): GenesisStateAmino; fromAminoMsg(object: GenesisStateAminoMsg): GenesisState; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; };