/** * MCP Tool: memory_feedback * Record feedback on memory search results (helpful/not helpful) * Used for learning which memories are most valuable */ import { z } from 'zod'; export declare const memoryFeedbackSchema: z.ZodObject<{ chunk_id: z.ZodNumber; helpful: z.ZodBoolean; context: z.ZodOptional; }, "strip", z.ZodTypeAny, { chunk_id: number; helpful: boolean; context?: string | undefined; }, { chunk_id: number; helpful: boolean; context?: string | undefined; }>; export declare function memoryFeedbackTool(args: z.infer, provider: any): Promise; //# sourceMappingURL=memory-feedback.tool.d.ts.map