import { ErrorEvent } from '../types';
/**
 * Generate a fingerprint for error grouping
 * Similar errors should have the same fingerprint
 */
export declare function generateFingerprint(error: ErrorEvent): string[];
/**
 * Check if two fingerprints represent the same error
 */
export declare function matchesFingerprint(fp1: string[], fp2: string[]): boolean;
//# sourceMappingURL=fingerprint.d.ts.map