import { RateProps as UnStyledRateProps } from '@sheinx/base'; import { GetWithFieldProps } from '../hooks/use-field-common'; /** * @title RateFunction * @subTitle (background, front): ReactClass */ export interface ArgProps { /** * @en Unselected element background * @cn 未选中元素背景 * @override ReactElement | string | Array */ background: Exclude; /** * @en selected element background * @cn 选中元素背景 * @override ReactElement | string | Array */ front: Exclude; } export type BaseRateProps = Omit; /** * @title Rate */ export type RateProps = GetWithFieldProps;