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