/*!
 * Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
 */
export declare class DecryptTransformer {
    keyAgreementKey: any;
    constructor({ keyAgreementKey }?: any);
    transform(chunk: any, controller: any): Promise<void>;
    decrypt(jwe: any): Promise<Uint8Array>;
}
