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