export type SmartNotifyResult = { message: string | null; actions: Array<{ command: string; value?: string; }>; }; export declare function smartNotify(summary: string, triggerText: string, fullContext: string): Promise; export declare function executeProactiveAction(command: string, value?: string): Promise;