import type { FC } from 'react'; import type { Project } from '../types/project'; interface ProjectCardProps { className?: string; project: Project; } declare const ProjectCard: FC; export default ProjectCard;