import { NonEmptyArray } from '../interfaces/NonEmptyArray'; export declare class SecretCleaner { private matches; private static flags; constructor(matches: NonEmptyArray); /** simple hashing to consider secrets differ or are equal */ static hashCode(value: string): string; /** filters an object against secret values in strings and returns a cleaned deep copy */ filterSecretValues(data: any): any; } //# sourceMappingURL=secretCleaner.d.ts.map