import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ImageReference } from "./ImageReference"; import { Veo31FastRequestAspectRatio } from "./Veo31FastRequestAspectRatio"; import { Veo31FastRequestResolution } from "./Veo31FastRequestResolution"; import { VeoImageReference } from "./VeoImageReference"; import { WebhookTarget } from "./WebhookTarget"; export declare const Veo31FastRequest: core.serialization.ObjectSchema; export declare namespace Veo31FastRequest { interface Raw { webhook?: WebhookTarget.Raw | null; prompt: string; negative_prompt?: string | null; seed?: number | null; enhance_prompt?: boolean | null; duration_secs?: number | null; aspect_ratio?: Veo31FastRequestAspectRatio.Raw | null; resolution?: Veo31FastRequestResolution.Raw | null; generate_audio?: boolean | null; start_frame?: ImageReference.Raw | null; end_frame?: ImageReference.Raw | null; images?: VeoImageReference.Raw[] | null; } }