import type { MaskitoPostprocessor } from '@maskito/core';
import type { MaskitoNumberParams } from '../number-params';
/**
 * 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(params: Required<MaskitoNumberParams>): MaskitoPostprocessor;
