import { BinaryLike } from "crypto"; /** * Hashes an input using md5 hash of hexadecimal digest. * * @param input The input to encrypt * @return The content digest */ export declare const createContentDigest: (input: BinaryLike | string | any) => string;