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