import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AudioReference } from "./AudioReference"; import { BytedanceSeedance2FastRequestAspectRatio } from "./BytedanceSeedance2FastRequestAspectRatio"; import { BytedanceSeedance2FastRequestResolution } from "./BytedanceSeedance2FastRequestResolution"; import { ImageReference } from "./ImageReference"; import { VideoReference } from "./VideoReference"; import { WebhookTarget } from "./WebhookTarget"; export declare const BytedanceSeedance2FastRequest: core.serialization.ObjectSchema; export declare namespace BytedanceSeedance2FastRequest { interface Raw { webhook?: WebhookTarget.Raw | null; prompt: string; aspect_ratio?: BytedanceSeedance2FastRequestAspectRatio.Raw | null; duration_secs?: number | null; seed?: number | null; generate_audio?: boolean | null; start_frame?: ImageReference.Raw | null; end_frame?: ImageReference.Raw | null; images?: ImageReference.Raw[] | null; videos?: VideoReference.Raw[] | null; audios?: AudioReference.Raw[] | null; resolution?: BytedanceSeedance2FastRequestResolution.Raw | null; } }