import { MaskitoPreprocessor } from '@maskito/core'; /** * This is a custom-written preprocessor to handle the zero shortcut on slash. * e.g: 1/ -> 01/ and 01/1/ -> 01/01/ * * @param templateString - A string representing the mask. e.g. "dd/mm/yyyy" or "__/__/____" * @param separator - The separator to use for segments of the date. Must match the separator in the template string. * @returns A MaskitoPreprocessor function. */ export declare const makeZeroShortcutPreprocessor: (templateString: string, separator: string) => MaskitoPreprocessor;