/** fastest implementation
 * from: http://www.myersdaily.org/joseph/javascript/md5-text.html
 */
/** Get an MD5 hash for a specific string input */
export declare function md5(s: string): string;
