import type { Tool } from '@wrongstack/core/types'; export interface PatchInput { patch: string; directory?: string | undefined; strip?: number | undefined; dry_run?: boolean | undefined; } export interface PatchOutput { applied: number; rejected: number; files: string[]; dry_run: boolean; message: string; } export declare const patchTool: Tool; //# sourceMappingURL=patch.d.ts.map