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