/** * Node.js Encryptor — uses shared crypto primitives from `@utils/crypto`. */ declare const Encryptor: { hash(algorithm: string, ...buffers: Uint8Array[]): Uint8Array; convertPasswordToHash(password: string, hashAlgorithm: string, saltValue: string, spinCount: number): Promise; randomBytes(size: number): Uint8Array; }; export { Encryptor };