import { z } from "zod"; export declare const memoryBankReadSchema: { projectPath: z.ZodString; file: z.ZodString; }; interface ReadResult { found: boolean; file: string; content: string | null; summary?: { files: Record; featureSpecs: string[]; }; } export declare function executeMemoryBankRead(input: { projectPath: string; file: string; }): Promise; export {};