import type { Notifier, NotificationOptions, NotificationResult } from "./types"; /** * macOS notifier using native Notification Centre via OpenCodeNotifier.app. * * Shows notifications in the macOS Notification Centre with standard banner behaviour. * Uses NSUserNotificationCenter (legacy API) which works with linker-signed binaries. * * Trade-offs vs CFUserNotification (MacOSNotifier): * - Notifications appear in Notification Centre and respect Do Not Disturb * - Limited to a single action button rather than Accept/Always/Reject * - App name shows as "OpenCode Request" */ export declare class MacOSNativeNotifier implements Notifier { private notifierPath; isAvailable(): Promise; private findNotifier; notify(options: NotificationOptions): Promise; } //# sourceMappingURL=macos-native.d.ts.map