import type { ContextResult } from '../types/context.js'; /** * Produce a deterministic SHA-256 fingerprint for a ContextResult. * * The fingerprint is derived from the ordered list of block IDs, types, and * token counts. Any two results that contain identical blocks in the same * order will produce the same fingerprint. * * @param result - ContextResult without the `deterministicFingerprint` field. * @returns A lowercase hex SHA-256 string. */ export declare function deterministicFingerprint(result: Omit): string; //# sourceMappingURL=fingerprint.d.ts.map