/**
 * Check if argument is a numeric sequence of type 1..5 or as defined by regex argument
 * @param arg
 * @param {RegExp} regex
 * @returns {boolean}
 */
export declare function isNumericSequence(arg: unknown, regex?: RegExp): boolean;
