import { Components } from '@vime/core'; interface VmLiveIndicatorProps { class?: string; style?: string; /** */ isLive?: Components.VmLiveIndicator["isLive"]; /** */ i18n?: Components.VmLiveIndicator["i18n"]; } interface VmLiveIndicatorEvents { } interface VmLiveIndicatorSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class LiveIndicator extends SvelteComponent { $$prop_def: VmLiveIndicatorProps; $$events_def: VmLiveIndicatorEvents; $$slot_def: VmLiveIndicatorSlots; $on(type: K, callback: (e: VmLiveIndicatorEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmLiveIndicatorElement | undefined; } export default LiveIndicator;