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