/// import './DuplicationsRating.css'; interface Props { muted?: boolean; size?: 'small' | 'normal' | 'big' | 'huge'; value: number | null | undefined; } export default function DuplicationsRating({ muted, size, value }: Props): JSX.Element; export {};