import { ListEncryptedKeyMetadataParams, StoredKeyMetadata } from '../types'; /** Get list of metadata for previously encrypted and persisted private keys * Note that this method does include the `ciphertext` or `dataToEncryptHash` values necessary to decrypt the keys. * To get those values, call `getEncryptedKey()` with the `id` for the appropriate key returned by this method. * * @param { ListEncryptedKeyMetadataParams } params Parameters required to fetch the encrypted private key metadata * @returns { Promise } The encrypted private key and its associated metadata */ export declare function listEncryptedKeyMetadata(params: ListEncryptedKeyMetadataParams): Promise;