/// <reference types="node" />
/// <reference types="pouchdb-core" />
import IJwsSignature from './IJwsSignature';
/**
 * JWS flattened json format
 */
export default interface IJwsFlatJson extends IJwsSignature {
    /**
     * The application-specific payload.
     */
    payload: Buffer;
}
