/** * E2E Test Runner - Exit Codes * * Standard exit codes for CLI operations */ export declare const EXIT_CODES: { /** All tests passed */ readonly SUCCESS: 0; /** One or more tests failed */ readonly TEST_FAILURE: 1; /** Configuration file error (missing, invalid, or parse error) */ readonly CONFIG_ERROR: 2; /** Adapter connection failed */ readonly CONNECTION_ERROR: 3; /** Test file validation error */ readonly VALIDATION_ERROR: 4; /** Test or operation timed out */ readonly TIMEOUT: 5; /** Command not found or fatal error */ readonly FATAL: 127; }; export type ExitCode = (typeof EXIT_CODES)[keyof typeof EXIT_CODES]; /** * Get exit code description */ export declare function getExitCodeDescription(code: ExitCode): string; /** * Map error code string to exit code */ export declare function errorCodeToExitCode(errorCode: string): ExitCode; //# sourceMappingURL=exit-codes.d.ts.map