import type { AgentTool } from "@mariozechner/pi-agent-core"; import { type Static } from "@sinclair/typebox"; import type { ToolDefinition } from "../extensions/types.js"; type EditRenderState = Record; declare const editSchema: import("@sinclair/typebox").TObject<{ path: import("@sinclair/typebox").TString; edits: import("@sinclair/typebox").TArray>; }>; export type EditToolInput = Static; export interface EditToolDetails { /** Unified diff of the changes made */ diff: string; /** Line number of the first change in the new file (for editor navigation) */ firstChangedLine?: number; } /** * Pluggable operations for the edit tool. * Override these to delegate file editing to remote systems (for example SSH). */ export interface EditOperations { /** Read file contents as a Buffer */ readFile: (absolutePath: string) => Promise; /** Write content to a file */ writeFile: (absolutePath: string, content: string) => Promise; /** Check if file is readable and writable (throw if not) */ access: (absolutePath: string) => Promise; } export interface EditToolOptions { /** Custom operations for file editing. Default: local filesystem */ operations?: EditOperations; } export declare function createEditToolDefinition(cwd: string, options?: EditToolOptions): ToolDefinition; export declare function createEditTool(cwd: string, options?: EditToolOptions): AgentTool; /** Default edit tool using process.cwd() for backwards compatibility. */ export declare const editToolDefinition: ToolDefinition>; }>, EditToolDetails | undefined, EditRenderState>; export declare const editTool: AgentTool>; }>, any>; export {}; //# sourceMappingURL=edit.d.ts.map