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