import { Components } from '@vime/core'; interface VmLoadingScreenProps { class?: string; style?: string; /** */ playbackReady?: Components.VmLoadingScreen["playbackReady"]; /** Whether the loading dots are hidden or not. */ hideDots?: Components.VmLoadingScreen["hideDots"]; } interface VmLoadingScreenEvents { } interface VmLoadingScreenSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class LoadingScreen extends SvelteComponent { $$prop_def: VmLoadingScreenProps; $$events_def: VmLoadingScreenEvents; $$slot_def: VmLoadingScreenSlots; $on(type: K, callback: (e: VmLoadingScreenEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmLoadingScreenElement | undefined; } export default LoadingScreen;