/** * notification-renderer.ts — Custom renderer for subagent completion handoffs. */ import type { NotificationDetails } from "../types.js"; import { Text } from "./tui-shim.js"; interface NotificationTheme { fg(color: string, text: string): string; bold(text: string): string; } export declare function createNotificationRenderer(theme: NotificationTheme): (message: { details?: NotificationDetails; }, { expanded }: { expanded: boolean; }) => Text | undefined; export {};