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