import { EventConsumerClass } from "../message-managers/types.mjs"; //#region ../@warlock.js/herald/src/decorators/consumable.d.ts type ConsumableOptions = { broker?: string; }; declare const pendingSubscribers: Set<{ Consumer: EventConsumerClass; options?: ConsumableOptions; }>; /** * Register the consumer to the broker */ declare function Consumable(options?: ConsumableOptions): (target: EventConsumerClass) => void; //#endregion export { Consumable, ConsumableOptions, pendingSubscribers }; //# sourceMappingURL=consumable.d.mts.map