declare type RatingRadioPropType = { starClassName?: string; filledRatingIcon: any; ratingState: number; onClick: (rating: number) => void; }; declare const RatingRadio: { ({ starClassName, filledRatingIcon, ratingState, onClick, }: RatingRadioPropType): JSX.Element; displayName: string; __docgenInfo: { description: string; displayName: string; props: { starClassName: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; filledRatingIcon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; ratingState: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onClick: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default RatingRadio;