import React from 'react';
export declare type ProjectCardProps = {
    projectName: string;
    projectDescription: string;
    synId: string;
    image?: JSX.Element;
};
export declare const ProjectViewCard: React.FunctionComponent<ProjectCardProps & React.HTMLAttributes<HTMLDivElement>>;
