import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ImageAvatar } from "./ImageAvatar"; import { OrbAvatar } from "./OrbAvatar"; import { UrlAvatar } from "./UrlAvatar"; export declare const WidgetConfigAvatar: core.serialization.Schema; export declare namespace WidgetConfigAvatar { type Raw = WidgetConfigAvatar.Orb | WidgetConfigAvatar.Url | WidgetConfigAvatar.Image; interface Orb extends OrbAvatar.Raw { type: "orb"; } interface Url extends UrlAvatar.Raw { type: "url"; } interface Image extends ImageAvatar.Raw { type: "image"; } }