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