/**
 * Returns a zero padded string with the length specified
 * If length of incoming value is longer than or equal to the specified length,
 * the value is returned unmodified
 *
 * @param value
 * @param length
 *
 * @return string
 */
export declare function zeroPadding(value: string, length?: number): string;
