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