import type { NoticeItem } from "../../ui-core/state/transcript-types.js"; import { type BlockContext } from "./block-context.js"; /** * Notices reach the feed only through hydrated history — live notices are * routed to `toast.show` by the composition root and never become rows. */ export declare function buildNoticeLines(ctx: BlockContext, item: NoticeItem): string[];