import type { Hash } from 'crypto'; declare function hashArray(value: Array, hash?: Hash): Hash; declare function hashObject(value: T, hash?: Hash): Hash; declare function hashify( value: Array | object | unknown, hash?: Hash, ): Hash; export default hashify; export { hashArray, hashObject };