/** * Creates a tool that can patch a file's content in-memory. * The tool modifies the `fileContext.content` property directly. */ export declare function createPatchFileTool(fileContext: { content: string; path: string; }): import("ai/dist").Tool<{ original_text_snippet: string; new_text_snippet: string; reason: string; }, string>; //# sourceMappingURL=patch-file.d.ts.map