import type { BotonicContext } from '@botonic/core';
import type { SmartIntentResponse, SmartIntentsInferenceRequestData } from '../types';
export declare class SmartIntentClient {
    botonicContext: BotonicContext;
    constructor(botonicContext: BotonicContext);
    getInference(data: SmartIntentsInferenceRequestData): Promise<SmartIntentResponse>;
}
