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