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