import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Gemini25FlashImageRequestAspectRatio } from "./Gemini25FlashImageRequestAspectRatio"; import { ImageReference } from "./ImageReference"; import { WebhookTarget } from "./WebhookTarget"; export declare const Gemini25FlashImageRequest: core.serialization.ObjectSchema; export declare namespace Gemini25FlashImageRequest { interface Raw { webhook?: WebhookTarget.Raw | null; prompt: string; images?: ImageReference.Raw[] | null; aspect_ratio?: Gemini25FlashImageRequestAspectRatio.Raw | null; } }