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