import React from 'react'; interface GitInsightIconProps { type?: 'fork' | 'commit' | 'star'; } declare const GitInsightIcon: React.FC; export default GitInsightIcon;