export declare function calulcateMulipartETag({ fileSizeInBytes, filePath, partSizeInBytes }: {
    fileSizeInBytes: number;
    filePath: string;
    partSizeInBytes?: number;
}): string;
export declare const calulcateETag: (content: string | Buffer) => string;
