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