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