import type { Tool } from '@wrongstack/core/types'; export interface WriteInput { path: string; content: string; } export interface WriteOutput { path: string; bytes_written: number; created: boolean; diff?: string | undefined; /** * Parse errors found in the written content (TS/JS/JSON only). The file is * on disk as written — fix these with a follow-up edit now. */ syntax_errors?: string[] | undefined; note?: string | undefined; } export declare const writeTool: Tool; //# sourceMappingURL=write.d.ts.map