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