export declare const LEGACY_SALT: Uint8Array; export declare const LEGACY_EXPORT_SALT: Uint8Array; export declare const PBKDF2_ITERATIONS = 600000; export declare const LEGACY_PBKDF2_ITERATIONS = 100000; export declare function deriveFileKey(machineId: string, username: string, salt: Uint8Array, iterations?: number): Promise; export declare function derivePassphraseKey(passphrase: string, salt: Uint8Array, iterations?: number): Promise; export declare function encryptData(key: CryptoKey, plaintext: string): Promise; export declare function decryptData(key: CryptoKey, data: Buffer): Promise; //# sourceMappingURL=encryption.d.ts.map