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