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