import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { GenerationReference } from "./GenerationReference"; import { InlineImageReference } from "./InlineImageReference"; import { StaticAssetReference } from "./StaticAssetReference"; export declare const ImageReference: core.serialization.Schema; export declare namespace ImageReference { type Raw = ImageReference.Asset | ImageReference.Generation | ImageReference.InlineBase64; interface Asset extends StaticAssetReference.Raw { type: "asset"; } interface Generation extends GenerationReference.Raw { type: "generation"; } interface InlineBase64 extends InlineImageReference.Raw { type: "inline_base64"; } }