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