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