import { default as React } from 'react'; import { RateProps as AntRateProps } from 'antd'; import { BaseComponentProps, DataSetConfig, ValidationDisplayConfig } from '../../types/common'; /** * AndRate Props 接口 */ export interface AndRateProps extends Omit, BaseComponentProps, DataSetConfig, ValidationDisplayConfig { /** 变更动作 */ changeAction?: string; /** 校验规则 */ rules?: any[]; /** 失焦时校验 */ validateOnBlur?: boolean; /** 修改时校验 */ validateOnChange?: boolean; /** 自定义变更处理函数 */ onChange?: (value: number) => void; } /** * AndRate 组件 * 封装 Ant Design Rate,支持数据绑定和动作解析 */ export declare const AndRate: React.FC; export default AndRate; //# sourceMappingURL=index.d.ts.map