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