import { CurrencyInputProps } from '../CurrencyInputProps'; export declare type CleanValueOptions = Pick & { value: string; }; /** * Remove prefix, separators and extra decimals from value */ export declare const cleanValue: ({ value, groupSeparator, decimalSeparator, allowDecimals, decimalsLimit, allowNegativeValue, disableAbbreviations, prefix, transformRawValue, }: CleanValueOptions) => string;