/** * Recall History Tool * Access deeper history beyond the recent 6-7 steps always provided */ import { Tool, ToolParameter, ToolExecutionContext } from '../tool-registry'; import { ToolResult } from '../types'; export declare class RecallHistoryTool implements Tool { name: string; description: string; parameters: ToolParameter[]; execute(params: Record, context: ToolExecutionContext): Promise; } //# sourceMappingURL=recall-history.d.ts.map