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