import { Segmentation } from "./Segmentation";
/**
 * Defines the conversation configuration in the speech Context message
 */
export interface Conversation {
    /**
     * The segmentation configuration.
     */
    segmentation: Segmentation;
}
