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