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