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