import { MobileWalletExport } from './types.js'; interface EncryptionMetaData { keyLen: number; iterations: number; salt: string; initializationVector: string; encryptionMethod: string; keyDerivationMethod: string; hashAlgorithm: string; } export interface EncryptedData { cipherText: string; metadata: EncryptionMetaData; } /** * Decrypts and parses a mobile wallet export. If the provided password is incorrect, then * an error will be thrown. * @param mobileWalletExport the encrypted mobile wallet export * @param password the decryption password for the mobile wallet export * @returns the decrypted mobile wallet export */ export declare function decryptMobileWalletExport(mobileWalletExport: EncryptedData, password: string): MobileWalletExport; export {};