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