/**
 * @module hash
 * @author M.Karkowski
 * @email M.Karkowski@zema.de
 *
 * Helper module to generate `hashs` of different type of objects.
 */
/**
 * Function to generate a Hash
 * @param obj the Object, that should be hashed
 */
export declare function generateHash(obj: any): string;
