import { ComponentType } from 'react'; import { type CommonMaskedInputProps } from './types'; /** символ с которым хранится float в хранилище после изменения */ export declare const STORE_DECIMAL_SYMBOL = "."; export interface InputMoneyProps extends CommonMaskedInputProps { allowDecimal?: boolean; allowNegative?: boolean; decimalLimit?: number; decimalSymbol?: string; integerLimit?: number; prefix?: string; requireDecimal?: boolean; suffix?: string; thousandsSeparatorSymbol?: string; } /** Очистка значения от приставок */ export declare function withStoreEvent(WrappedComponent: ComponentType): (props: InputMoneyProps) => JSX.Element; export declare const InputMoney: (props: InputMoneyProps) => JSX.Element;