import type { Notifier, NotificationOptions, NotificationResult } from "./types"; /** * macOS notifier using bundled OpenCodeNotifier app. * Uses CFUserNotification for native alert dialogs with action buttons. * No special permissions required. */ export declare class MacOSNotifier implements Notifier { private notifierPath; isAvailable(): Promise; private findNotifier; notify(options: NotificationOptions): Promise; } //# sourceMappingURL=macos.d.ts.map