import type { MaskitoPostprocessor } from '@maskito/core';
/**
 * This postprocessor is connected with {@link createMinMaxPlugin}:
 * both validate `min`/`max` bounds of entered value (but at the different point of time).
 */
export declare function createMinMaxPostprocessor({ min, max, decimalSeparator, minusSign, }: {
    min: number;
    max: number;
    decimalSeparator: string;
    minusSign: string;
}): MaskitoPostprocessor;
//# sourceMappingURL=min-max-postprocessor.d.ts.map