import { Joi } from '../helpers'; import type { IEntityType } from './entityType'; export interface IEvaluateParams { text: string; context?: string[]; conversationId?: string; entityTypes?: IEntityType[]; } export declare const evaluateParamsSchema: Joi.ObjectSchema; export interface IEvaluateResult { confidence: string; intent: string; context?: string[]; slots?: Record; }