import { Hash } from '../interfaces/hash.interface'; export declare class NodeHash implements Hash { private readonly hash; private constructor(); static create(cipher: string): Promise; digest(input: Uint8Array): Promise>; }