/** * Inspect Formatter * * Formats GET /v1/memories/{id} response as clean Markdown * optimized for LLM parsing. * * Design: structured sections with clear key:value pairs * for reliable extraction. Uses markdown semantics that * every LLM understands natively. */ import type { MemoryDetail } from "../client/types.js"; export declare function formatInspectResult(mem: MemoryDetail): string; //# sourceMappingURL=inspectFormatter.d.ts.map