/**
* @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 declarefunctiongenerateHash(obj: any): string;