import { RefCallBack } from 'react-hook-form'; import { RatingTypes } from '../../constants/FormStepTypes'; export interface RatingProps { disabled?: boolean; isMobile?: boolean; value?: number | null; onChange: (value: number | null) => void; inputRef?: React.RefObject | RefCallBack; } declare function Rating({ type, ...others }: RatingProps & { type: RatingTypes; }): JSX.Element; export default Rating;