export declare function DEFAULT_GET_PREFERRED_REPLACEMENT_STRING(value: string, replaceIndex: number, newChar: string): string; /** * Fill the string on the right side with the example value to the given length * @param checkValue Initial string to pad * @param exampleValue Example value * @param length Target length * @returns String padded with the given example value */ export declare function fillToLength(checkValue: string, exampleValue: string, length: number): string; /** * Trim all characters matching the empty mask on the right side of the given value * @param value String to trim * @param emptyMask Empty mask * @returns Trimmed string */ export declare function trimTrailingMask(value: string, emptyMask: string): string; //# sourceMappingURL=MaskedInputUtils.d.ts.map