import React from 'react'; /** * The Rating component. A simple star rating that also acceps other styles. */ export interface IRatingProps extends React.ButtonHTMLAttributes { color?: string; onClick?: () => void; isActive?: boolean; isHover?: boolean; isDisabled?: boolean; itemSize?: 'small' | 'medium'; style?: object; } export declare const Rating: React.FC;