/// import { Transform, TransformCallback } from 'stream'; import { PbeCipherStreamOptions } from './pbe-cipher-stream-options'; export declare class PbeDecipherStream extends Transform { readonly options: PbeCipherStreamOptions; private static readonly SaltLength; private static readonly IvLength; private readonly password; private readonly salt; private readonly iv; private decipher; private saltBytesRead; private ivBytesRead; constructor(options: PbeCipherStreamOptions); _transform(chunk: any, _: string, callback: TransformCallback): void; _flush(callback: TransformCallback): void; }