/** * Write Result Formatter * * Formats POST /v1/memories response as clean Markdown * optimized for LLM parsing. * * Design: concise confirmation with actionable metadata. * The agent needs the memory_id and confirmation — not decoration. */ import type { WriteResult } from "../client/types.js"; export declare function formatWriteResult(result: WriteResult, memoryType: string, queryIdProvided?: boolean): string; /** * Format a duplicate memory error into an actionable message. */ export declare function formatDuplicateError(duplicateOf: string, similarity: number): string; //# sourceMappingURL=writeFormatter.d.ts.map