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