import type { ObservationRepository } from "../db/observations"; import type { UserObservationRepository } from "../db/user-memory"; import type { ToolDefinition } from "../types"; /** Create the mem-recall tool for fetching full observation details by ID. */ export declare function createRecallTool(observations: ObservationRepository, userObservationRepo?: UserObservationRepository): ToolDefinition; //# sourceMappingURL=recall.d.ts.map