import { Notification as NodeNotification, NotificationCallback } from 'node-notifier';
export interface Notification extends NodeNotification {
    force?: boolean;
}
export declare function notify(notification?: Notification, callback?: NotificationCallback): import("node-notifier").NodeNotifier | undefined;
