import { ToolDef } from '../../ai/tools.js'; import { IAgentContext } from '../context.js'; export declare const MemoryTools: ToolDef[]; export declare const MemoryToolImplementations: { create_checkpoint: (args: { summary: string; intent: string; }, context: IAgentContext) => Promise; upsert_intent: (args: { intent: string; }, context: IAgentContext) => Promise; update_working_memory: (args: { key: string; value: unknown; }, context: IAgentContext) => Promise; get_current_packet: (_args: Record, context: IAgentContext) => Promise; }; //# sourceMappingURL=memory.d.ts.map