import { Joi } from '../helpers'; import type { StartMethod } from './conversation'; export declare const startParamsSchema: Joi.ObjectSchema; export interface IStartParams { conversationId: string; startMethod?: StartMethod; snapshotId?: string; faceId?: string; }