/** * Terminal notification support using OSC 777 * Port of github.com/muesli/termenv/notification.go */ import type { Output } from './types.js'; /** * Creates a terminal notification using OSC 777 escape sequences * @param title The notification title * @param body The notification body * @returns The formatted notification string */ export declare function notify(title: string, body: string): string; /** * Notification functionality for Output instances */ export declare class NotificationControl { private output; constructor(output: Output); /** * Sends a notification to the terminal * @param title The notification title * @param body The notification body * @returns This instance for chaining */ notify(title: string, body: string): this; } //# sourceMappingURL=notification.d.ts.map