import { StoreEncryptedKeyBatchParams, StoreEncryptedKeyBatchResult } from '../types'; /** Stores a batch of encrypted private keys and their metadata to the wrapped keys backend service * * @param { StoreEncryptedKeyParams } params Parameters required to fetch the encrypted private key metadata * @returns { Promise } The encrypted private key and its associated metadata */ export declare function storeEncryptedKeyBatch(params: StoreEncryptedKeyBatchParams): Promise;