import * as React from 'react'; import './Rating.css'; interface Props extends React.AriaAttributes { className?: string; muted?: boolean; small?: boolean; value: string | number | undefined; } export default function Rating({ className, muted, small, value, ...ariaAttrs }: Props): JSX.Element; export {};