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