import { Context } from '../services/context'; /** * Provides the Hash method for hashing values. * * @export * @class HashingService */ export declare class HashingService { /** * Hashes the value producing a Base64 encoded string. * * @param {string} value The value to hash. * @returns {string} The hash value as a Base64 encoded string. * @memberof HashingService */ hash(value: string, context?: Context): string; }