import React from 'react'; import { TdRateProps } from './type'; type Props = Required> & { size: number; isCurrent: boolean; isSelected: boolean; isHalf: boolean; onClick?: (placement: 'left' | 'right', e: React.MouseEvent) => void; }; export declare const RateIcon: (props: Props) => React.JSX.Element; export {};