/** * Exit-code carrier for the cockpit verbs. The Commander action handler * catches `CockpitExit` and translates it to `process.exit(code)` after * writing the message to stderr. Tests intercept by catching the thrown * error directly — no `process.exit` needed. */ export declare class CockpitExit extends Error { readonly code: number; constructor(code: number, message: string); } export declare function isCockpitExit(err: unknown): err is CockpitExit; //# sourceMappingURL=exit.d.ts.map