import { GrantAuthorization, type GrantAuthorizationSDKType } from './authz.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** GenesisState defines the authz module's genesis state. */ export interface GenesisState { authorization: GrantAuthorization[]; } export interface GenesisStateProtoMsg { typeUrl: '/cosmos.authz.v1beta1.GenesisState'; value: Uint8Array; } /** GenesisState defines the authz module's genesis state. */ export interface GenesisStateSDKType { authorization: GrantAuthorizationSDKType[]; } export declare const GenesisState: { typeUrl: "/cosmos.authz.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