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