import type { AuditContext, ContentFinding } from "./types.js";
/**
 * Scan release-note surfaces against available manifest snapshots.
 * Reports mismatched numeric claims as content findings and skips missing inputs because historical
 * release text can exist before a matching snapshot catalog entry.
 *
 * @param ctx Audit context whose filesystem is rooted at the target project.
 * @returns Findings plus the number of release-note files that were actually scanned.
 */
export declare function runSnapshotClaimChecks(ctx: AuditContext): {
    findings: ContentFinding[];
    filesScanned: number;
};
//# sourceMappingURL=check-snapshot-claims.d.ts.map