export declare class ETagHash {
    private partSizeInBytes;
    private sums;
    private part;
    private bytes;
    constructor(partSizeInMb?: number);
    update(chunk: Buffer): this;
    digest(): string;
}
export declare const createHash: (...args: ConstructorParameters<typeof ETagHash>) => ETagHash;
