/// import { Transform, TransformOptions } from 'stream'; export declare class NemKeysCipherStreamOptions implements TransformOptions { readonly privateKey: string; readonly publicKey: string; constructor(privateKey: string, publicKey: string); read?(this: Transform, size: number): void; }