import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AudioReference } from "./AudioReference"; import { CreatifyAuroraRequestResolution } from "./CreatifyAuroraRequestResolution"; import { ImageReference } from "./ImageReference"; import { WebhookTarget } from "./WebhookTarget"; export declare const CreatifyAuroraRequest: core.serialization.ObjectSchema; export declare namespace CreatifyAuroraRequest { interface Raw { webhook?: WebhookTarget.Raw | null; image: ImageReference.Raw; audio: AudioReference.Raw; resolution?: CreatifyAuroraRequestResolution.Raw | null; guidance_scale?: number | null; audio_guidance_scale?: number | null; } }