import { ExportPrivateKeyParams, ExportPrivateKeyResult } from '../types'; /** * Exports a previously persisted private key from the wrapped keys service for direct use by the caller, along with the keys metadata. * This method fetches the encrypted key from the wrapped keys service, then executes a Lit Action that decrypts the key inside the LIT action and * removes the salt from the decrypted key. * * @param { ExportPrivateKeyParams } params Parameters required to export the private key * * @returns { Promise } - The decrypted private key of the Wrapped Key along with all the associated key info and LIT PKP Address associated with the Wrapped Key */ export declare function exportPrivateKey(params: ExportPrivateKeyParams): Promise;