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