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