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