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