import * as React from "react"; import { ButtonProps } from "../.."; import { IconProps } from "../IconBase"; export interface RatingProps extends ButtonProps { name?: string; unselectedIconName?: never; unselectedIcon?: React.ComponentType; value?: number; defaultValue?: number; selectedColor?: string; unselectedColor?: string; count?: number; } /** * The Rating component lets users apply a rating to an item and shows their evaluation. */ declare class Rating extends React.PureComponent { state: { value: number; hoverValue: any; }; onClick: (event: any) => void; onMouseOver: (event: any) => void; onMouseOut: () => void; render(): JSX.Element; } export default Rating;