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