/** * Cortex Notifications — macOS native notifications */ export declare function notify(title: string, message: string, subtitle?: string): void; export declare function notifyCritical(title: string, message: string): void; /** * Notify based on heartbeat results */ export declare function notifyHeartbeat(overall: string, summary: string): void; /** * Notify on new suggestions */ export declare function notifySuggestion(type: string, name: string): void; /** * Notify on watch updates */ export declare function notifyWatch(title: string, impact: string): void;