import { Params, ParamsSDKType } from "./auth"; import { Any, AnySDKType } from "../../../google/protobuf/any"; import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { /** params defines all the paramaters of the module. */ params: Params | undefined; /** accounts are the accounts present at genesis. */ accounts: Any[]; } /** GenesisState defines the auth module's genesis state. */ export interface GenesisStateSDKType { params: ParamsSDKType | undefined; accounts: AnySDKType[]; } 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 & { maxMemoCharacters: bigint; txSigLimit: bigint; txSizeCostPerByte: bigint; sigVerifyCostEd25519: bigint; sigVerifyCostSecp256k1: bigint; } & Record, never>; accounts?: Any[] & (Any & { typeUrl: string; value: Uint8Array; } & Record, never>)[] & Record, never>; } & Record, never>>(object: I): GenesisState; };