export interface Notification { title: string; message: string; sound?: string | boolean; timeout?: number; icon?: string; appIcon?: string; } export interface NotificationOptions extends Notification { sound?: string | boolean; timeout?: number; appIcon?: string; } declare class NativeNotifier { private platform; constructor(); notify(options: NotificationOptions): Promise; private notifyMacOS; private notifyLinux; private notifyWindows; private escapeString; private escapeShell; private escapePowerShell; } declare const notifier: NativeNotifier; export { notifier }; export default notifier; //# sourceMappingURL=native-notifier.d.ts.map