import type * as ElevenLabs from "../index"; /** * Request body for the Google Gemini 2.5 Flash image model. */ export interface Gemini25FlashImageRequest { /** 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; /** A text description of the image to generate. */ prompt: string; /** Up to 5 reference images to edit or draw from. */ images?: ElevenLabs.ImageReference[]; /** The aspect ratio of the output image. With `auto`, the model picks an aspect ratio based on the inputs. */ aspectRatio?: ElevenLabs.Gemini25FlashImageRequestAspectRatio; }