import IJweRecipient from './IJweRecipient';
import { TSMap } from 'typescript-map';
import IJweBase from './IJweBase';
/**
 * Defines a header in JWE
 */
export declare type JweHeader = TSMap<string, string>;
/**
 * JWE general json format
 */
export default interface IJweGeneralJson extends IJweBase {
    /**
     * The recipients that can decrypt
     */
    recipients: IJweRecipient[];
}
