import { Components } from '@vime/core'; interface VmClickToPlayProps { 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.VmClickToPlay["useOnMobile"]; /** */ paused?: Components.VmClickToPlay["paused"]; /** */ isVideoView?: Components.VmClickToPlay["isVideoView"]; /** */ isMobile?: Components.VmClickToPlay["isMobile"]; } interface VmClickToPlayEvents { } interface VmClickToPlaySlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class ClickToPlay extends SvelteComponent { $$prop_def: VmClickToPlayProps; $$events_def: VmClickToPlayEvents; $$slot_def: VmClickToPlaySlots; $on(type: K, callback: (e: VmClickToPlayEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); /** */ get forceClick(): Components.VmClickToPlay["forceClick"]; get ref(): any; get getWebComponent(): HTMLVmClickToPlayElement | undefined; } export default ClickToPlay;