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