/** * TUI notification state panel. * * Adapted from the CLI renderer's `renderNotifications()` in status-format.ts. * Renders only when `snap.notifications` is present. * * @module */ /** @jsxImportSource @opentui/solid */ import type { ThemeColors } from "../helpers.ts"; import type { MonitorSnapshot } from "../../cli/commands/monitor/monitor-reader.ts"; export declare function renderNotificationState(props: { c: ThemeColors; snap: MonitorSnapshot | null; }): any; //# sourceMappingURL=NotificationState.d.ts.map