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