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