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