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