import type * as ElevenLabs from "../index"; /** * The result of a source-segment add or edit: the segment and the new revision. */ export interface DubbingSourceSegmentUpdateResponse { /** The segment in its updated state. */ segment: ElevenLabs.DubbingTranscriptSegment; /** The project's source-transcript revision after this edit. */ revision: number; }