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