import { TextFieldProps } from '@mui/material';
import { BaseInput } from '../../types/input.base';
export type NumberInputValueType = number | null;
export interface NumberInputProps extends BaseInput<NumberInputValueType>, Omit<TextFieldProps, 'defaultValue' | 'ref'> {
    type: 'number';
    defaultValue?: NumberInputValueType;
}
