//#region src/components/notice/events.d.ts /** Event namespace for Notice-related bus events */ declare const NoticeEventNamespace = "Notice"; /** * Event types for Notice queue management via the bus system. * - queue: Add a notice to the queue * - dequeue: Remove notices matching criteria * - actionPrimary: Primary button was pressed * - actionSecondary: Secondary button was pressed * - close: Notice was closed/dismissed */ declare const NoticeEventTypes: { readonly queue: "Notice:queue"; readonly dequeue: "Notice:dequeue"; readonly actionPrimary: "Notice:action:primary"; readonly actionSecondary: "Notice:action:secondary"; readonly close: "Notice:close"; }; //#endregion export { NoticeEventNamespace, NoticeEventTypes }; //# sourceMappingURL=events.d.ts.map