import { TextFieldProps } from '@mui/material'; import { FC } from 'react'; export type AbyssNumberFieldProps = Omit & { value: number | null; onChange: (value: number | null) => void; mode?: 'number' | 'currency'; currencySymbol?: string; currencyPosition?: 'start' | 'end'; locale?: string; decimals?: number; thousandSeparator?: string; min?: number; max?: number; allowNegative?: boolean; }; declare const AbyssNumberField: FC; export default AbyssNumberField;