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