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