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