import type * as ElevenLabs from "../index"; /** * Request body for the Creatify Aurora lipsync video model. */ export interface CreatifyAuroraRequest { /** Include to send the generation's result to the workspace's configured flows webhooks once it completes or fails. The webhook payload matches the terminal response of the corresponding GET endpoint. */ webhook?: ElevenLabs.WebhookTarget; /** The image of the character to animate. */ image: ElevenLabs.ImageReference; /** The speech audio to drive the character's lip movements. */ audio: ElevenLabs.AudioReference; /** The resolution of the output video. */ resolution?: ElevenLabs.CreatifyAuroraRequestResolution; /** How strongly the generation adheres to the input image. Omit to use the model's default. */ guidanceScale?: number; /** How strongly the lip movements adhere to the audio. Omit to use the model's default. */ audioGuidanceScale?: number; }