import type * as ElevenLabs from "../index"; /** * A reference image guiding a Veo generation, with its role. */ export interface VeoImageReference { /** The reference image. */ image: ElevenLabs.ImageReference; /** How the model uses the image: `subject` places its subject or scene elements into the video; `style` transfers its visual style. */ role: ElevenLabs.VeoImageReferenceRole; }