import type { Components, JSX } from "../types/components";

interface VideoPlayer extends Components.VideoPlayer, HTMLElement {}
export const VideoPlayer: {
    prototype: VideoPlayer;
    new (): VideoPlayer;
};
/**
 * Used to define this component and all nested components recursively.
 */
export const defineCustomElement: () => void;
