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