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