import { StoreEncryptedKeyParams, StoreEncryptedKeyResult } from '../types'; /** Stores an encrypted private key and its 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 storeEncryptedKey(params: StoreEncryptedKeyParams): Promise;