import { McpServer, RegisteredTool } from '@modelcontextprotocol/sdk/server/mcp.js'; import { McpLogger } from '../../utils/logger.js'; import z from 'zod'; import { TextContentResponse } from '../../types.js'; import { Tool } from '../../Tool.js'; declare const inputSchemaZodObject: z.ZodObject<{ docUrl: z.ZodString; absoluteCurrentWorkingDirectory: z.ZodString; }, z.z.core.$strip>; type InputSchemaType = z.infer; export declare class DocFetchTool extends Tool { constructor(mcpServer: McpServer, logger: McpLogger); handler({ docUrl, absoluteCurrentWorkingDirectory, }: InputSchemaType): Promise; register(): RegisteredTool; } export {};