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