export interface ExactDigestComparisonInput { identity: Readonly>; actual_value_sha256: string; expected_value_sha256: string; comparator: string; mode: "exact" | "tolerance"; parameters_sha256: string; tolerance_sha256: string | null; mask_sha256: string | null; } export interface ExactDigestComparisonResult { passed: boolean; result_sha256: string; } export declare function evaluateExactDigestComparison(input: ExactDigestComparisonInput): ExactDigestComparisonResult; export declare function exactComparisonResultIdentity(material: Readonly>): string;