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