import { IMaskProps, INumberValueInput, IPipeObject } from './MaskedInputProps'; export declare const maskedNumberValue: ({ value, prefix, suffix, thousandsSeparatorSymbol, }: INumberValueInput) => number; export declare const createMinMaxInputPipe: ({ min, max, mask, ...props }: INumberValueInput & IMaskProps) => (conformedValue: string | number) => IPipeObject;