UNPKG

332 BTypeScriptView Raw
1import type { RateRef, RateProps as RcRateProps } from 'rc-rate/lib/Rate';
2import * as React from 'react';
3export interface RateProps extends RcRateProps {
4 rootClassName?: string;
5 tooltips?: Array<string>;
6}
7declare const Rate: React.ForwardRefExoticComponent<RateProps & React.RefAttributes<RateRef>>;
8export default Rate;