import { default as React } from 'react'; import { BasicInputProps } from '../BaseInput'; export type NumberInputProps = Pick & { originValue: string; placeholder?: string; prefix?: string; postfix?: string; max?: number; onValueChange?: (value: string) => void; disabled?: boolean; }; declare const NumberInput: React.FC; export default NumberInput; //# sourceMappingURL=index.d.ts.map