import { Params, ParamsSDKType, Validator, ValidatorSDKType, Delegation, DelegationSDKType, UnbondingDelegation, UnbondingDelegationSDKType, Redelegation, RedelegationSDKType } from "./staking"; import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { /** params defines all the paramaters of related to deposit. */ params: Params | undefined; /** * last_total_power tracks the total amounts of bonded tokens recorded during * the previous end block. */ lastTotalPower: Uint8Array; /** * last_validator_powers is a special index that provides a historical list * of the last-block's bonded validators. */ lastValidatorPowers: LastValidatorPower[]; /** delegations defines the validator set at genesis. */ validators: Validator[]; /** delegations defines the delegations active at genesis. */ delegations: Delegation[]; /** unbonding_delegations defines the unbonding delegations active at genesis. */ unbondingDelegations: UnbondingDelegation[]; /** redelegations defines the redelegations active at genesis. */ redelegations: Redelegation[]; exported: boolean; } /** GenesisState defines the staking module's genesis state. */ export interface GenesisStateSDKType { params: ParamsSDKType | undefined; last_total_power: Uint8Array; last_validator_powers: LastValidatorPowerSDKType[]; validators: ValidatorSDKType[]; delegations: DelegationSDKType[]; unbonding_delegations: UnbondingDelegationSDKType[]; redelegations: RedelegationSDKType[]; exported: boolean; } /** LastValidatorPower required for validator set update logic. */ export interface LastValidatorPower { /** address is the address of the validator. */ address: string; /** power defines the power of the validator. */ power: bigint; } /** LastValidatorPower required for validator set update logic. */ export interface LastValidatorPowerSDKType { address: string; power: bigint; } 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 & { params?: Params & { unbondingTime: import("../../../google/protobuf/duration").Duration & { seconds: bigint; nanos: number; } & Record, never>; maxValidators: number; maxEntries: number; historicalEntries: number; bondDenom: string; } & Record, never>; lastTotalPower?: Uint8Array; lastValidatorPowers?: LastValidatorPower[] & (LastValidatorPower & { address: string; power: bigint; } & Record, never>)[] & Record, never>; validators?: Validator[] & (Validator & { operatorAddress: string; consensusPubkey?: import("../../../google/protobuf/any").Any & { typeUrl: string; value: Uint8Array; } & Record, never>; jailed: boolean; status: import("./staking").BondStatus; tokens: string; delegatorShares: string; description: import("./staking").Description & { moniker: string; identity: string; website: string; securityContact: string; details: string; } & Record, never>; unbondingHeight: bigint; unbondingTime: import("../../../google/protobuf/timestamp").Timestamp & { seconds: bigint; nanos: number; } & Record, never>; commission: import("./staking").Commission & { commissionRates: import("./staking").CommissionRates & { rate: string; maxRate: string; maxChangeRate: string; } & Record, never>; updateTime: import("../../../google/protobuf/timestamp").Timestamp & { seconds: bigint; nanos: number; } & Record, never>; } & Record, never>; minSelfDelegation: string; } & Record, never>)[] & Record, never>; delegations?: Delegation[] & (Delegation & { delegatorAddress: string; validatorAddress: string; shares: string; } & Record, never>)[] & Record, never>; unbondingDelegations?: UnbondingDelegation[] & (UnbondingDelegation & { delegatorAddress: string; validatorAddress: string; entries: import("./staking").UnbondingDelegationEntry[] & (import("./staking").UnbondingDelegationEntry & { creationHeight: bigint; completionTime: import("../../../google/protobuf/timestamp").Timestamp & { seconds: bigint; nanos: number; } & Record, never>; initialBalance: string; balance: string; } & Record, never>)[] & Record, never>; } & Record, never>)[] & Record, never>; redelegations?: Redelegation[] & (Redelegation & { delegatorAddress: string; validatorSrcAddress: string; validatorDstAddress: string; entries: import("./staking").RedelegationEntry[] & (import("./staking").RedelegationEntry & { creationHeight: bigint; completionTime: import("../../../google/protobuf/timestamp").Timestamp & { seconds: bigint; nanos: number; } & Record, never>; initialBalance: string; sharesDst: string; } & Record, never>)[] & Record, never>; } & Record, never>)[] & Record, never>; exported?: boolean; } & Record, never>>(object: I): GenesisState; }; export declare const LastValidatorPower: { typeUrl: string; encode(message: LastValidatorPower, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): LastValidatorPower; fromJSON(object: any): LastValidatorPower; toJSON(message: LastValidatorPower): unknown; fromPartial & { address?: string; power?: bigint; } & Record, never>>(object: I): LastValidatorPower; };