import React from 'react'; import type { RateProps } from 'antd/lib/rate'; export interface MyRateProps { value?: string; visible?: boolean; onValueRelease?: any; onChange?: any; tooltips?: RateProps['tooltips']; defaultValue?: any; getCompPropMapState?: any; compId?: any; name?: any; fieldName?: any; required?: any; hidden?: any; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; selfSpan?: any; colSpan?: any; style?: any; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; colon?: boolean; isFormChild?: boolean | undefined; readOnly: boolean; disabled: boolean; rules: any[]; tipSize?: string; tipWidth?: string; tipHeight?: string; } declare const Rate: React.ForwardRefExoticComponent>; export default Rate;