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