export interface ParsedMemory { /** Content under the "## User Profile" section. */ userProfile: string; /** Content under the "## Key Facts" section. */ keyFacts: string; /** Content under the "## Ongoing Context" section. */ ongoingContext: string; /** Content between MANUAL:START and MANUAL:END markers. */ manualNotes: string; /** The full raw markdown input, preserved for round-tripping. */ raw: string; } /** * Parse a Signet memory markdown file into structured sections. * * Extracts content from well-known `## ` headings and the * `` / `` block. Any content * outside recognized sections is ignored — the `raw` field always * contains the original markdown for lossless round-tripping. */ export declare function parseMemory(markdown: string): ParsedMemory; export declare function generateMemory(): string; //# sourceMappingURL=memory.d.ts.map