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