import type { QueryResult } from "./types.js"; /** * The shape every memory agent prompt must ask for, kept next to the parser that * enforces it so a prompt cannot drift away from what the response is checked against. */ export declare const MEMORY_AGENT_JSON_CONTRACT: string; export declare function parseMemoryAgentResponse(stdout: string, context?: { stderr?: string; }): Pick;