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