/** * CogmemAi upsell messages for cloud-only tools in local mode. */ export declare function cloudOnly(tool: string, description: string, benefit: string, tip?: string): { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; export declare const UPSELL: { readonly extract_memories: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly ingest_document: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly consolidate_memories: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly generate_skills: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly link_memories: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly get_memory_links: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly get_memory_versions: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly promote_memory: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly get_analytics: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly save_correction: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly set_reminder: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; readonly get_stale_memories: () => { cloud_only: boolean; tool: string; message: string; what_you_get: string; upgrade: string; tip: string; }; };