import { Components } from '@vime/core'; interface VmDblClickFullscreenProps { class?: string; style?: string; /** By default this is disabled on mobile to not interfere with playback, set this to `true` to enable it. */ useOnMobile?: Components.VmDblClickFullscreen["useOnMobile"]; /** */ isFullscreenActive?: Components.VmDblClickFullscreen["isFullscreenActive"]; /** */ isVideoView?: Components.VmDblClickFullscreen["isVideoView"]; /** */ playbackReady?: Components.VmDblClickFullscreen["playbackReady"]; /** */ isMobile?: Components.VmDblClickFullscreen["isMobile"]; } interface VmDblClickFullscreenEvents { } interface VmDblClickFullscreenSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class DblClickFullscreen extends SvelteComponent { $$prop_def: VmDblClickFullscreenProps; $$events_def: VmDblClickFullscreenEvents; $$slot_def: VmDblClickFullscreenSlots; $on(type: K, callback: (e: VmDblClickFullscreenEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmDblClickFullscreenElement | undefined; } export default DblClickFullscreen;