import type * as ElevenLabs from "../index"; export interface FieldConflict { /** Identifier of the conflicting field relative to its section: a dot-path within conversation_config/platform_settings, or a procedure id. */ path: string; /** Which config section this path belongs to. */ section: ElevenLabs.ConflictSection; /** Value at the common ancestor (merge base). */ baseValue?: unknown; /** Value on the source branch tip. */ sourceValue?: unknown; /** Value on the target branch tip. */ targetValue?: unknown; }