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