/**
 * Recommend Tool - AI-powered Kubernetes resource recommendations
 */
import { z } from 'zod';
import { DotAI } from '../core/index';
import { Logger } from '../core/error-handling';
export declare const RECOMMEND_TOOL_NAME = "recommend";
export declare const RECOMMEND_TOOL_DESCRIPTION = "Deploy, create, setup, install, or run applications, infrastructure, and services on Kubernetes with AI recommendations. Describe what you want to deploy.";
export declare const RECOMMEND_TOOL_INPUT_SCHEMA: {
    intent: z.ZodString;
};
/**
 * Direct MCP tool handler for recommend functionality
 */
export declare function handleRecommendTool(args: {
    intent: string;
}, dotAI: DotAI, logger: Logger, requestId: string): Promise<{
    content: {
        type: 'text';
        text: string;
    }[];
}>;
//# sourceMappingURL=recommend.d.ts.map