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