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