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