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