/** @jsxImportSource @opentui/react */ /** * Renders a `NoticeItem` (CHAT-007, V2-051). * * Classic Ink: solid WARN / INFO / ERR badge, then body text that wraps in its * own column so multi-line errors never paint over the badge. */ import { type ReactNode } from "react"; import type { NoticeItem } from "../../../ui-core/state/transcript-types.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export declare function NoticeRow(props: { item: NoticeItem; theme: Theme; /** Chat-pane columns (plan split/overlay already subtracted). */ contentWidth?: number | undefined; }): ReactNode;