/** * Check if it is a unix user name. * @param {string} value Value to be validated. * @return {boolean} Pass is true, fail is false. * @example * ```js * import {validators} from 'metronic-extension'; * * validators.isUnixUser('root'); * validators.isUnixUser('www-data'); * validators.isUnixUser('user$'); * validators.isUnixUser('user123'); * validators.isUnixUser('_user'); * ``` */ declare const _default: (value: string) => boolean; export default _default;