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