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