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