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