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