interface DetectIntentWithAIRequest {
    organizationId: string;
    text: string;
    promptName: string;
    llmConfigName: string;
}
interface IntentDetectionResponse {
    intent: string;
    confidence: number;
}
export declare class DetectIntentWithAI {
    execute(request: DetectIntentWithAIRequest): Promise<IntentDetectionResponse>;
}
export {};
//# sourceMappingURL=DetectIntentWithAI.d.ts.map