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