/// <reference types="node" />
/// <reference types="pouchdb-core" />
/**
 * Class that performs hashing operations using the multihash format.
 */
export default class Multihash {
    /**
     * Hashes the content using the hashing algorithm specified by the latest protocol version.
     */
    static hash(content: Buffer, hashAlgorithmInMultihashCode: number): Buffer;
}
