/**
 * `aiwg index doctor --rlm-audit` subcommand.
 *
 * Audits enriched index entries for content drift. Per-entry workflow:
 *   1. Read stored SemanticFields.
 *   2. Compute current artifact content hash.
 *   3. If hashes match: ok (or stale-age if past freshness window).
 *   4. If hashes differ: classify status as 'skip' (no recomputed input)
 *      or 'drift' (overlap/symbol thresholds exceeded).
 *
 * To classify drift the audit needs a *recomputed* enrichment for each
 * mismatching entry. Producing that requires an RLM dispatch, which lives
 * in agent skills, not the CLI. So this command operates in two passes:
 *
 *   Pass 1 (default):  Hash check only. Reports ok / stale-age / would-need-recompute.
 *   Pass 2 (--apply):  Operator supplies a directory of recomputed JSON
 *                      files (one per entry) and the audit classifies drift.
 *
 * @implements #1208
 */
export declare function main(args: string[]): Promise<void>;
//# sourceMappingURL=cli.d.ts.map