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