import type * as ElevenLabs from "../index"; /** * The result of a target-translation edit: the updated segment and the new revision. */ export interface DubbingTargetSegmentUpdateResponse { /** The target segment in its updated state. */ segment: ElevenLabs.DubbingTargetTranscriptSegment; /** The target's revision after this edit. */ revision: number; }