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