import { Grant, type GrantSDKType } from './feegrant.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; /** GenesisState contains a set of fee allowances, persisted from the store */ export interface GenesisState { allowances: Grant[]; } export interface GenesisStateProtoMsg { typeUrl: '/cosmos.feegrant.v1beta1.GenesisState'; value: Uint8Array; } /** GenesisState contains a set of fee allowances, persisted from the store */ export interface GenesisStateSDKType { allowances: GrantSDKType[]; } export declare const GenesisState: { typeUrl: "/cosmos.feegrant.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