/**
 * @module botbuilder-ai
 */
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
*/
export interface IntentData {
    /** Confidence in intent classification. */
    score: number;

    /** Any extra properties */
    [propName: string]: any;
}