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