import { LanguageUnderstandingModelImpl } from "../sdk/LanguageUnderstandingModel";
/**
 * @class AddedLmIntent
 */
export declare class AddedLmIntent {
    modelImpl: LanguageUnderstandingModelImpl;
    intentName: string;
    /**
     * Creates and initializes an instance of this class.
     * @constructor
     * @param modelImpl - The model.
     * @param intentName - The intent name.
     */
    constructor(modelImpl: LanguageUnderstandingModelImpl, intentName: string);
}
