import { type ImageProps } from 'next/image'; export interface PortfolioCardProps { slug: string; image: Omit; title: string; description: string; } export declare function ProjectCard({ slug, image, title, description }: PortfolioCardProps): import("react/jsx-runtime").JSX.Element;