export interface UtteranceResponseModel {
    /** The start time of the utterance in seconds. */
    start: number;
    /** The end time of the utterance in seconds. */
    end: number;
}
