export type ExitCode = 0 | 1 | 2 | 3 | 4; export interface ExitInputs { readonly configError: boolean; readonly engineError: boolean; readonly belowParseCoverage: boolean; readonly findingsAtThreshold: boolean; } export declare const EXIT_CODE_MEANINGS: Readonly>; export declare function computeExitCode(inputs: ExitInputs): ExitCode; //# sourceMappingURL=exit-codes.d.ts.map