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