/// import { Transform, TransformCallback } from 'stream'; import { NemKeysCipherStreamOptions } from './nem-keys-cipher-stream-options'; export declare class NemKeysDecipherStream extends Transform { readonly options: NemKeysCipherStreamOptions; private static readonly SaltLength; private static readonly IvLength; private readonly privateKey; private readonly publicKey; private readonly salt; private readonly iv; private decipher; private saltBytesRead; private ivBytesRead; constructor(options: NemKeysCipherStreamOptions); _transform(chunk: any, _: string, callback: TransformCallback): void; _flush(callback: TransformCallback): void; private hashFunction; private getDecipher; }