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