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