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