import { FunctionComponent } from 'react';

interface StarRatingProps {
    disabled?: boolean;
    readOnly?: boolean;
    onChange?: (event: React.ChangeEvent<{}>, value: number | null) => void;
    precision?: number;
    name: string;
    IconContainerComponent?: any;
    value?: number | null;
    internalChange?: () => void;
}
declare const StarRating: FunctionComponent<StarRatingProps>;

export { StarRating as default };
export type { StarRatingProps };
