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