import type { AnyAlgorithm, EncryptDecryptParams, SubtleAlgorithm } from './keys'; export type Operation = 'digest' | 'generateKey' | 'sign' | 'verify' | 'importKey' | 'deriveBits' | 'encrypt' | 'decrypt' | 'get key length' | 'wrapKey' | 'unwrapKey'; export declare const normalizeAlgorithm: (algorithm: SubtleAlgorithm | EncryptDecryptParams | AnyAlgorithm, op: Operation) => SubtleAlgorithm | EncryptDecryptParams; //# sourceMappingURL=Algorithms.d.ts.map