export declare const EXPLAIN_OBSERVABILITY_VERSION = 1; export type ExplainPaths = { /** Absolute path used for IO. */ logPath: string; /** Path as shown to the operator (flag value or default). */ logDisplay: string; logDir: string; statePath: string; checkpointPath: string; snapshotsDir: string; }; /** * Resolve the log under inspection and derive its project paths. * With no --log this is exactly the cmdExplainReplay path set * (/event-log.jsonl + /canonical-state.json + * /checkpoint.json); with --log the same files are derived next * to the given log, so any example or project directory works. */ export declare function resolveExplainPaths(flags: Record): ExplainPaths; export declare function cmdExplainObservability(sub: string | undefined, flags: Record): Promise;