/// <reference types="node" />
/// <reference types="pouchdb-core" />
import { JweHeader } from "./IJweGeneralJson";
import IJweRecipient from "./IJweRecipient";
/**
 * JWS signature used by the general JSON
 */
export default class JweRecipient implements IJweRecipient {
    /**
     * The unprotected (unverified) header.
     */
    header?: JweHeader;
    /**
     * The JWE signature.
     */
    encrypted_key: Buffer;
    constructor();
}
