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