/// <reference types="react" />
import { RatingProps } from '../../Rating';
declare const Rate: ({ onChange, ...others }: RatingProps & {
    onChange?: ((value: number) => void) | undefined;
}) => JSX.Element;
export default Rate;
