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