import { z } from "zod"; export declare const memoryBankUpdateSchema: { projectPath: z.ZodString; file: z.ZodString; content: z.ZodString; mode: z.ZodOptional>; }; interface UpdateResult { updated: boolean; message: string; file: string; } export declare function executeMemoryBankUpdate(input: { projectPath: string; file: string; content: string; mode?: "replace" | "append"; }): Promise; export {};