import { z } from 'zod'; import { BaseTool } from './base-tool'; import { FileSystemAdapter } from '@a24z/core-library'; import { McpToolResult } from '../types'; export declare class ReplaceTagTool extends BaseTool { name: string; description: string; schema: z.ZodObject<{ directoryPath: z.ZodString; oldTag: z.ZodString; newTag: z.ZodString; confirmReplacement: z.ZodDefault>; transferDescription: z.ZodDefault>; }, "strip", z.ZodTypeAny, { directoryPath: string; oldTag: string; newTag: string; confirmReplacement: boolean; transferDescription: boolean; }, { directoryPath: string; oldTag: string; newTag: string; confirmReplacement?: boolean | undefined; transferDescription?: boolean | undefined; }>; private fsAdapter?; constructor(fsAdapter?: FileSystemAdapter); execute(input: z.infer): Promise; } //# sourceMappingURL=ReplaceTagTool.d.ts.map