/** Exit status codes for system programs that attempts to conform to the nearest thing I could find to a standard which is used in C/C++, via sysexists.h. (See: https:tldp.org/LDP/abs/html/exitcodes.html) Any additions to this will be documented here: - 99: Restart request. Original sysexists.h, where some portions of the comments in this file are from, is copyright © 1987, 1993 The Regents of the University of California. All rights reserved. And released under the 3-Clause BSD License. Copyright ⓒ 2022-present, Aral Balkan Small Technology Foundation License: AGPL version 3.0. */ declare const _default: { ok: number; generalError: number; cliSyntaxError: number; dataError: number; fileNotFound: number; accountNotFound: number; hostNotFound: number; unavailable: number; internalSoftwareError: number; systemError: number; criticalSystemFileMissing: number; cannotCreateOutputFile: number; inputOutputError: number; temporaryFailure: number; protocolError: number; permissionDenied: number; configurationError: number; restartRequest: number; }; export default _default;