import type * as ElevenLabs from "../index"; /** * The result of a bulk source edit: the updated segments and the new revision. */ export interface DubbingBulkSourceSegmentUpdateResponse { /** The edited segments in their updated state. */ segments: ElevenLabs.DubbingTranscriptSegment[]; /** The project's source-transcript revision after the edits. */ revision: number; }