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