import { Components } from '@vime/core'; interface VmFullscreenControlProps { class?: string; style?: string; /** The name of the enter fullscreen icon to resolve from the icon library. */ enterIcon?: Components.VmFullscreenControl["enterIcon"]; /** The name of the exit fullscreen icon to resolve from the icon library. */ exitIcon?: Components.VmFullscreenControl["exitIcon"]; /** The name of an icon library to use. Defaults to the library defined by the `icons` player property. */ icons?: Components.VmFullscreenControl["icons"]; /** Whether the tooltip is positioned above/below the control. */ tooltipPosition?: Components.VmFullscreenControl["tooltipPosition"]; /** The direction in which the tooltip should grow. */ tooltipDirection?: Components.VmFullscreenControl["tooltipDirection"]; /** Whether the tooltip should not be displayed. */ hideTooltip?: Components.VmFullscreenControl["hideTooltip"]; /** A slash (`/`) separated string of JS keyboard keys (`KeyboardEvent.key`), that when caught in a `keydown` event, will trigger a `click` event on the control. */ keys?: Components.VmFullscreenControl["keys"]; /** */ isFullscreenActive?: Components.VmFullscreenControl["isFullscreenActive"]; /** */ i18n?: Components.VmFullscreenControl["i18n"]; /** */ playbackReady?: Components.VmFullscreenControl["playbackReady"]; } interface VmFullscreenControlEvents { } interface VmFullscreenControlSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class FullscreenControl extends SvelteComponent { $$prop_def: VmFullscreenControlProps; $$events_def: VmFullscreenControlEvents; $$slot_def: VmFullscreenControlSlots; $on(type: K, callback: (e: VmFullscreenControlEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmFullscreenControlElement | undefined; } export default FullscreenControl;