import { ReactElement } from 'react'; import { RatingProps } from './Rating.interface'; declare const Rating: { ({ ref: propRef, register: propRegister, error: propError, disabled: propDisabled, name, value: controlledValue, defaultValue, onChange, count, mask, size, half, clearable, readOnly, color, className, dataTheme, ...props }: RatingProps): ReactElement; displayName: string; }; export default Rating;