import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { GptImage1RequestAspectRatio } from "./GptImage1RequestAspectRatio"; import { GptImage1RequestBackground } from "./GptImage1RequestBackground"; import { GptImage1RequestQuality } from "./GptImage1RequestQuality"; import { ImageReference } from "./ImageReference"; import { WebhookTarget } from "./WebhookTarget"; export declare const GptImage1Request: core.serialization.ObjectSchema; export declare namespace GptImage1Request { interface Raw { webhook?: WebhookTarget.Raw | null; prompt: string; images?: ImageReference.Raw[] | null; mask?: ImageReference.Raw | null; quality?: GptImage1RequestQuality.Raw | null; background?: GptImage1RequestBackground.Raw | null; aspect_ratio?: GptImage1RequestAspectRatio.Raw | null; } }