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