import { default as React } from 'react'; import { ProjectWithMetrics } from '@abyss-project/spotlight'; interface ProjectCardProps { project: ProjectWithMetrics; index: number; onEdit?: (project: ProjectWithMetrics) => void; onDelete?: (project: ProjectWithMetrics) => void; pathToProjectDetails: string; bannerUrl?: string; logoUrl?: string; targetViewport?: '_blank' | '_self'; actions?: React.ReactNode; } declare const InternalProjectCard: React.FC; export default InternalProjectCard;