interface RatingProps { /** The hackathon's overall rating. */ stars: number; } /** * A compact rating pill. */ declare const Rating: ({ stars }: RatingProps) => JSX.Element; export default Rating;