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