import { Components } from '@vime/core'; interface VmDefaultUiProps { class?: string; style?: string; /** Whether clicking the player should not toggle playback. */ noClickToPlay?: Components.VmDefaultUi["noClickToPlay"]; /** Whether double clicking the player should not toggle fullscreen mode. */ noDblClickFullscreen?: Components.VmDefaultUi["noDblClickFullscreen"]; /** Whether the custom captions UI should not be loaded. */ noCaptions?: Components.VmDefaultUi["noCaptions"]; /** Whether the custom poster UI should not be loaded. */ noPoster?: Components.VmDefaultUi["noPoster"]; /** Whether the custom spinner UI should not be loaded. */ noSpinner?: Components.VmDefaultUi["noSpinner"]; /** Whether the custom default controls should not be loaded. */ noControls?: Components.VmDefaultUi["noControls"]; /** Whether the custom default settings menu should not be loaded. */ noSettings?: Components.VmDefaultUi["noSettings"]; /** Whether the default loading screen should not be loaded. */ noLoadingScreen?: Components.VmDefaultUi["noLoadingScreen"]; } interface VmDefaultUiEvents { } interface VmDefaultUiSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class DefaultUi extends SvelteComponent { $$prop_def: VmDefaultUiProps; $$events_def: VmDefaultUiEvents; $$slot_def: VmDefaultUiSlots; $on(type: K, callback: (e: VmDefaultUiEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmDefaultUiElement | undefined; } export default DefaultUi;