import { ReactNode } from 'react'; export declare type StarsPropType = { filledRatingIcon: ReactNode; unfilledRatingIcon: ReactNode; rating: number; isInput?: boolean; starContainerClassName?: string; starClassName?: string; useRadio?: boolean; getRating?: (rating: number) => void; }; declare const Stars: { ({ filledRatingIcon, unfilledRatingIcon, rating, isInput, starContainerClassName, starClassName, getRating, useRadio, }: StarsPropType): JSX.Element; displayName: string; __docgenInfo: { description: string; displayName: string; props: { filledRatingIcon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; unfilledRatingIcon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; rating: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; isInput: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; starContainerClassName: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; starClassName: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; useRadio: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; getRating: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default Stars;