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