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