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