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