import { Components } from '@vime/core'; interface VmUiProps { class?: string; style?: string; /** */ isVideoView?: Components.VmUi["isVideoView"]; /** */ playsinline?: Components.VmUi["playsinline"]; /** */ isFullscreenActive?: Components.VmUi["isFullscreenActive"]; } interface VmUiEvents { } interface VmUiSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class Ui extends SvelteComponent { $$prop_def: VmUiProps; $$events_def: VmUiEvents; $$slot_def: VmUiSlots; $on(type: K, callback: (e: VmUiEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmUiElement | undefined; } export default Ui;