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