/**
 * Choose Solution Tool - Select a solution and return its questions
 */
import { z } from 'zod';
import { DotAI } from '../core/index';
import { Logger } from '../core/error-handling';
export declare const CHOOSESOLUTION_TOOL_NAME = "chooseSolution";
export declare const CHOOSESOLUTION_TOOL_DESCRIPTION = "Select a solution by ID and return its questions for configuration";
export declare const CHOOSESOLUTION_TOOL_INPUT_SCHEMA: {
    solutionId: z.ZodString;
};
/**
 * Direct MCP tool handler for chooseSolution functionality
 */
export declare function handleChooseSolutionTool(args: {
    solutionId: string;
}, dotAI: DotAI, logger: Logger, requestId: string): Promise<{
    content: {
        type: 'text';
        text: string;
    }[];
}>;
//# sourceMappingURL=choose-solution.d.ts.map