/** * Exodus status reporter. * * `runExodusStatus()` returns a structured view of the current exodus state * without performing any reads or writes beyond stat() calls. * * @task T11248 (E5 · AC3 · SG-DB-SUBSTRATE-V2) * @saga T11242 */ import type { ExodusStatusResult } from './types.js'; /** * Return a structured status report for the exodus subsystem. * * This is a read-only operation — no mutations occur. * * @param cwd - Working directory used to resolve the project root. * @returns {@link ExodusStatusResult} * * @task T11248 (AC3) */ export declare function runExodusStatus(cwd?: string): ExodusStatusResult; //# sourceMappingURL=status.d.ts.map