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