import * as React from 'react'; interface NumberFieldProps { /** The label of the text field */ label: string; /** The label of the text field */ value?: number; /** The minimum value allowed */ min?: number; /** The maximum value allowed */ max?: number; /** Set to true to display input with error */ error?: boolean; /** Set to true to disable in the input */ disabled?: boolean; /** Optional helper text */ helperText?: React.ReactNode; /** Called when the value changes */ onChange?: (value: number) => any; /** Called when the input loses focus */ onBlur?: React.FocusEventHandler; } export declare const NumberField: React.SFC; export default NumberField;