/** * Send a desktop notification. Gracefully no-ops if node-notifier is not * installed. */ export declare function sendNotification(title: string, message: string): Promise; /** * Build a notification message for a build completion event. */ export declare function buildNotificationMessage(productName: string, success: boolean, errorCount: number): { title: string; message: string; }; //# sourceMappingURL=notify.d.ts.map