import React from 'react'; import { InputProps } from '../types'; import { IInputWrapper } from '../base/wrapper'; export interface IInputRating extends InputProps, Omit { /** Mandatory selection of options, most likely passed from type options */ className?: string; ratingMax: number; isDisabled?: boolean; canSetZero?: boolean; itemSize?: 'small' | 'medium'; } export declare const InputRating: React.FC;