import { FC } from 'react'; interface RatingProps { initialRating: number; stop?: number; } declare const Rating: FC; export default Rating;