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