/** * Exit codes for the CLI */ export declare const EXIT_CODES: { /** Command is allowed to proceed */ readonly ALLOWED: 0; /** Command is blocked */ readonly BLOCKED: 2; /** An error occurred */ readonly ERROR: 1; }; //# sourceMappingURL=exit-codes.d.ts.map