Files
copilot-toolbox-template-123/node_modules/@ant-design/pro-field/es/components/DigitRange/index.d.ts
2026-01-09 14:52:46 +00:00

13 lines
549 B
TypeScript

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;