/// import { EncryptedData } from "./encryptedData"; interface IRandomness { id: string; iv: Buffer; salt: Buffer; } export declare enum EncryptorVersion { V4 = 4 } export declare class Encryptor { static encrypt(data: Buffer, password: string, randomness?: IRandomness): EncryptedData; } export {};