/** * [INPUT]: conversation text, LlmFn, config * [OUTPUT]: extracted memory items (via LLM) or heuristic fallback * [POS]: Dual-path extraction — LLM when available, regex heuristics otherwise */ import type { NanomemConfig } from "./config.js"; import type { ExtractedItem, ExtractedWork, LlmFn } from "./types.js"; export declare function extractMemories(conversation: string, cfg: NanomemConfig, llmFn?: LlmFn): Promise; export declare function extractWork(conversation: string, cfg: NanomemConfig, llmFn?: LlmFn): Promise;