import React from 'react' declare type Rating = 0 | 1 | 2 | 3 | 4 | 5 interface IRatingProps extends React.HTMLProps { rating?: Rating onChangeRating?: (value: Rating) => void readOnly?: boolean } declare const Rating: React.FC export default Rating