/** @jsxImportSource @opentui/react */ 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; contentWidth?: number | undefined; }): ReactNode;