/** * Tool: continue_investigation * Asks follow-up questions in an existing investigation */ import { ToolServices } from './index.js'; import { ContinueInvestigationOutput } from '../types/mcp.js'; /** * Continue an existing investigation */ export declare function continueInvestigation(services: ToolServices, args: unknown): Promise;