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