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