import { QueueDispatcher } from "../contracts/queue-dispatcher.contract.mjs"; //#region ../notifications/src/queue/herald-queue.d.ts type HeraldQueueOptions = { /** Herald channel to publish jobs to. Default `"notifications.dispatch"`. */channel?: string; /** Herald broker name (multi-broker setups). Default broker if omitted. */ broker?: string; }; declare function heraldQueue(options?: HeraldQueueOptions): QueueDispatcher; //#endregion export { HeraldQueueOptions, heraldQueue }; //# sourceMappingURL=herald-queue.d.mts.map