import React from 'react'; import { ErrorType } from './Input'; export type FormattedNumberProps = ErrorType & { initialValue?: string; id: string; max?: number; maximumFractionDigits?: number; allowEmpty?: boolean; onChange?: (value: number) => void; required?: boolean; label: string; className?: string; appendClassName?: string; style?: React.CSSProperties; }; export declare const FormattedNumberInput: ({ initialValue, id, max, maximumFractionDigits, allowEmpty, required, label, className, appendClassName, error, errorClassName, onChange, style, ...inputProps }: FormattedNumberProps) => import('./react/jsx-runtime.js').JSX.Element;