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