import CryptoFactory from "../plugin/CryptoFactory";
import { TSMap } from "typescript-map";
import { IPayloadProtection } from "./IPayloadProtection";
/**
 * Interface defining options for the selected protocol.
 */
export default interface IPayloadProtectionOptions {
    cryptoFactory: CryptoFactory;
    payloadProtection: IPayloadProtection;
    options: TSMap<string, any>;
}
