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