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