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