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