import React from 'react'; import type { StarProps } from './Star'; export interface RateProps extends Pick { value?: number; defaultValue?: number; allowClear?: boolean; style?: React.CSSProperties; prefixCls?: string; onChange?: (value: number) => void; onHoverChange?: (value: number) => void; className?: string; tabIndex?: number; onFocus?: () => void; onBlur?: () => void; onKeyDown?: React.KeyboardEventHandler; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; id?: string; autoFocus?: boolean; direction?: string; } export interface RateRef { focus: VoidFunction; blur: VoidFunction; } declare const _default: React.ForwardRefExoticComponent>; export default _default;