/// import { RatingTypes } from '../../constants/FormStepTypes'; export interface RatingProps { disabled?: boolean; isMobile?: boolean; value: any; onChange: (value: number | null) => void; inputRef: any; focusColor: string; unSelectedColor: string; } declare function Rating({ type, ...others }: RatingProps & { type: RatingTypes; }): JSX.Element; export default Rating;