import { COSEALG } from '../../cose.js'; import type { SubtleCryptoKeyAlgName } from './structs.js'; /** * Convert a COSE alg ID into a corresponding key algorithm string value that WebCrypto APIs expect * * Unless otherwise specified, mappings were referenced from * https://w3c.github.io/webcrypto/#jwk-mapping-alg */ export declare function mapCoseAlgToWebCryptoKeyAlgName(alg: COSEALG): SubtleCryptoKeyAlgName; //# sourceMappingURL=mapCoseAlgToWebCryptoKeyAlgName.d.ts.map