/**
  * Class for W3C Crypto API constants
  */
export default class W3cCryptoApiConstants {
    /**
     * Define W3C JWK constants
     */
    static Jwk: string;
    /**
     * Define W3C algorithm constants
     */
    static RsaOaep: string;
    /**
    * Define W3C algorithm constants
    */
    static RsaSsaPkcs1V15: string;
    /**
     * Define W3C algorithm constants
     */
    static Sha256: string;
    /**
     * Define W3C algorithm constants
     */
    static Sha512: string;
    /**
     * Define W3C algorithm constants
     */
    static AesGcm: string;
    /**
     * Define W3C algorithm constants
     */
    static Hmac: string;
}
