import { Grant, GrantSDKType } from "./feegrant"; import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.feegrant.v1beta1"; /** GenesisState contains a set of fee allowances, persisted from the store */ export interface GenesisState { allowances: Grant[]; } /** GenesisState contains a set of fee allowances, persisted from the store */ export interface GenesisStateSDKType { allowances: GrantSDKType[]; } 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 & { allowances?: Grant[] & (Grant & { granter: string; grantee: string; allowance?: import("../../../google/protobuf/any").Any & { typeUrl: string; value: Uint8Array; } & Record, never>; } & Record, never>)[] & Record, never>; } & Record, never>>(object: I): GenesisState; };