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