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