export interface PromoteResult { ok: boolean; noteId?: string; reason?: string; } /** * Promote stable facts from a closed/archived handoff into durable project * memory (a note). Handoff remains the continuation artifact; memory gets * stable knowledge only. */ export declare function promoteHandoffToMemory(cwd: string, id: string): PromoteResult;