import { Components } from '@vime/core'; interface VmPipControlProps { class?: string; style?: string; /** The name of the enter pip icon to resolve from the icon library. */ enterIcon?: Components.VmPipControl["enterIcon"]; /** The name of the exit pip icon to resolve from the icon library. */ exitIcon?: Components.VmPipControl["exitIcon"]; /** The name of an icon library to use. Defaults to the library defined by the `icons` player property. */ icons?: Components.VmPipControl["icons"]; /** Whether the tooltip is positioned above/below the control. */ tooltipPosition?: Components.VmPipControl["tooltipPosition"]; /** The direction in which the tooltip should grow. */ tooltipDirection?: Components.VmPipControl["tooltipDirection"]; /** Whether the tooltip should not be displayed. */ hideTooltip?: Components.VmPipControl["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.VmPipControl["keys"]; /** */ isPiPActive?: Components.VmPipControl["isPiPActive"]; /** */ i18n?: Components.VmPipControl["i18n"]; /** */ playbackReady?: Components.VmPipControl["playbackReady"]; } interface VmPipControlEvents { } interface VmPipControlSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class PipControl extends SvelteComponent { $$prop_def: VmPipControlProps; $$events_def: VmPipControlEvents; $$slot_def: VmPipControlSlots; $on(type: K, callback: (e: VmPipControlEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmPipControlElement | undefined; } export default PipControl;