import { Params, type ParamsSDKType } from './auth.js'; import { Any, type AnySDKType } from '../../../google/protobuf/any.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; } export interface GenesisStateProtoMsg { typeUrl: '/cosmos.auth.v1beta1.GenesisState'; value: Uint8Array; } /** GenesisState defines the auth module's genesis state. */ export interface GenesisStateSDKType { params: ParamsSDKType; accounts: AnySDKType[]; } export declare const GenesisState: { typeUrl: "/cosmos.auth.v1beta1.GenesisState"; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): JsonSafe; fromPartial(object: Partial): GenesisState; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; }; //# sourceMappingURL=genesis.d.ts.map