import { FunctionComponent } from 'react';
import { TextFieldProps } from '@mui/material/TextField';
import { InputProps } from '../../features/core';
/**
* An Input component for a number
*
* @example
*
*
* You can customize the `step` props (which defaults to "any")
* @example
*
*
* The object passed as `options` props is passed to the material-ui component
*/
declare const NumberInput: FunctionComponent;
export interface NumberInputProps extends InputProps, Omit {
step?: string | number;
min?: string | number;
max?: string | number;
}
export default NumberInput;