import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AudioReference } from "./AudioReference"; import { BytedanceSeedance2MiniRequestAspectRatio } from "./BytedanceSeedance2MiniRequestAspectRatio"; import { BytedanceSeedance2MiniRequestResolution } from "./BytedanceSeedance2MiniRequestResolution"; import { ImageReference } from "./ImageReference"; import { VideoReference } from "./VideoReference"; import { WebhookTarget } from "./WebhookTarget"; export declare const BytedanceSeedance2MiniRequest: core.serialization.ObjectSchema; export declare namespace BytedanceSeedance2MiniRequest { interface Raw { webhook?: WebhookTarget.Raw | null; prompt: string; aspect_ratio?: BytedanceSeedance2MiniRequestAspectRatio.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?: BytedanceSeedance2MiniRequestResolution.Raw | null; } }