/** * PEAC Reconcile CLI Command (v0.11.3+) * * Merge two evidence bundles and detect conflicts. * Conflict key: composite (iss, jti) with 3-step fallback: * 1. (iss, jti) from JWT claims * 2. (iss, rid) for Wire 0.1 * 3. (iss, receipt_ref) where receipt_ref = sha256(receipt_jws) * * NO auto-resolution: conflicts are surfaced for human decision. * Deterministic output: receipts and conflicts sorted by (iss, jti) lexicographically. * * Security: 16 MB bundle size limit, path traversal prevention. */ import { Command } from 'commander'; export declare function reconcileCommand(): Command; //# sourceMappingURL=reconcile.d.ts.map