import { z } from 'zod'; import type { McpToolResult } from '../types'; import { BaseTool } from './base-tool'; import { FileSystemAdapter } from '@a24z/core-library'; export declare class GetAnchoredNoteByIdTool extends BaseTool { private fs; name: string; description: string; 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=GetAnchoredNoteByIdTool.d.ts.map