import { RoundInputProps } from '../Input/RoundInput'; export type NumberFieldProps = RoundInputProps & { title: string; unit: string; placeholder: string; value?: number | string; description?: string; setMinMaxError?: (isMinMaxError: boolean) => void; setMinError?: (isMinError: boolean) => void; setMaxError?: (isMaxError: boolean) => void; minMaxErrorMessage?: string; minErrorMessage?: string; maxErrorMessage?: string; }; export declare const NumberField: (props: NumberFieldProps) => React.JSX.Element;