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