import React from 'react'; export interface CountCardProps { type: 'fork' | 'commit' | 'star'; count: number; } declare const CountCard: React.FC; export default CountCard;