amis-rpc-design/node_modules/antd/es/rate/index.d.ts
2023-10-07 19:42:30 +08:00

9 lines
332 B
TypeScript

import type { RateRef, RateProps as RcRateProps } from 'rc-rate/lib/Rate';
import * as React from 'react';
export interface RateProps extends RcRateProps {
rootClassName?: string;
tooltips?: Array<string>;
}
declare const Rate: React.ForwardRefExoticComponent<RateProps & React.RefAttributes<RateRef>>;
export default Rate;