import type { MaskitoPlugin } from '@maskito/core';
/**
 * It pads EMPTY integer part with zero if decimal parts exists.
 * It works on blur event only!
 * @example 1|,23 => Backspace => Blur => 0,23
 */
export declare function createNotEmptyIntegerPlugin({ decimalSeparator, prefix, postfix, }: {
    decimalSeparator: string;
    prefix: string;
    postfix: string;
}): MaskitoPlugin;
//# sourceMappingURL=not-empty-integer.plugin.d.ts.map