import type { ObservationRepository } from "../db/observations"; import type { SessionRepository } from "../db/sessions"; import type { UserObservationRepository } from "../db/user-memory"; import type { ToolDefinition } from "../types"; /** Create the mem-save tool for manually saving observations to project or user memory. */ export declare function createSaveTool(observations: ObservationRepository, sessions: SessionRepository, projectPath: string, userObservationRepo?: UserObservationRepository): ToolDefinition; //# sourceMappingURL=save.d.ts.map