export interface RepoCardProps {
    project: string;
    projectTitle: string;
    description: string;
    className?: string;
    target: string;
    platform: "gitlab" | "github";
    stats?: Array<{
        value: string | number;
        icon: React.ReactElement;
    }>;
}
export declare function RepoCard({ project, projectTitle, description, className, platform, stats, target, }: RepoCardProps): import("react/jsx-runtime").JSX.Element;
