import React from 'react'; import '../shared/input.scss'; export declare type TNumberType = 'whole' | 'integer'; interface IProps { label?: string; type: TNumberType; placeholder?: string; name?: string; defaultValue?: string; disabled?: boolean; isRequired?: boolean; readOnly?: boolean; handleChange?: (value: string) => void; handleBlur?: (value: string, isValid: boolean) => void; handleFocus?: () => void; className?: string; } declare const NumberInput: React.FC; export { NumberInput, };