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