@harvest-profit/npk
Version:
NPK UI Design System
11 lines • 419 B
TypeScript
import React from 'react';
import { InputProps } from '.';
interface NumberInputProps extends Omit<InputProps, 'value' | 'onChange'> {
onChange?: (value?: number) => void;
value?: number;
type?: 'currency' | 'number' | 'percentage';
}
declare const NumberInputWrapper: React.FC<NumberInputProps>;
export default NumberInputWrapper;
export type { NumberInputProps };
//# sourceMappingURL=NumberInput.d.ts.map