/** * Ops memory integration — appends a structured incident entry to * OpenClaw's active memory file on successful ops saga completion. * * Memory files are plain markdown at /memory/YYYY-MM-DD.md. * Appending is safe per OpenClaw convention. */ import type { SagaState } from '../coordinator/state.js'; export declare function appendOpsMemoryEntry(stateRoot: string, state: SagaState): Promise; //# sourceMappingURL=ops-memory.d.ts.map