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