import { z } from "zod"; export declare const memoryBankInitSchema: { projectPath: z.ZodString; projectName: z.ZodOptional; techStack: z.ZodOptional; description: z.ZodOptional; }; interface InitResult { initialized: boolean; message: string; createdFiles: string[]; path: string; claudeMd?: { created: boolean; updated: boolean; path: string; }; } export declare function executeMemoryBankInit(input: { projectPath: string; projectName?: string; techStack?: string; description?: string; }): Promise; export {};