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