import { Hash } from '../../domain/Hash';
/**
 * a simple function which converts a string into an md5 hash
 */
export declare const asHashMd5: (message: string) => Promise<Hash>;
