import type { Notifier, NotificationOptions, NotificationResult } from "./types"; /** * Linux notifier using D-Bus notifications. * Uses node-dbus-notifier when available for action button support. * Falls back to notify-send for basic notifications. */ export declare class LinuxNotifier implements Notifier { private dbusNotifier; isAvailable(): Promise; private hasNotifySend; notify(options: NotificationOptions): Promise; private notifyWithDbus; private buildDbusActions; private notifyWithNotifySend; private normaliseAction; } //# sourceMappingURL=linux.d.ts.map