import React from 'react';
interface RatingProps {
  rating: number;
}
declare const Rating: React.FC<RatingProps>;
export default Rating;
