import React from 'react';
import 'antd/lib/input-number/style';
export type Value = string | number | undefined | null;
export type ValuePair = Value[];
export type FieldDigitRangeProps = {
    text: ValuePair;
    placeholder?: string | string[];
    separator?: string;
    separatorWidth?: number;
};
declare const _default: React.ForwardRefExoticComponent<import("@ant-design/pro-provider").BaseProFieldFC & import("@ant-design/pro-provider").ProRenderFieldPropsType & FieldDigitRangeProps & React.RefAttributes<any>>;
export default _default;
