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