import { type JSX } from 'react'; export type InputProps = Omit & { currency?: string; locale?: string; prefix?: string; step?: number; type?: 'text' | 'number'; onBlur?: (value: string | number) => void; onChange?: (value: string | number) => void; }; export declare const Input: ({ currency, locale, prefix, step, type, min, max, onBlur, onChange, value, ...rest }: InputProps) => import("react/jsx-runtime").JSX.Element;