/** * index.js */ export declare const encrypt: (msg: Uint8Array, key: Uint8Array, { name, iv, additionalData, tagLength }: import("./params").cipherOptions) => Promise; export declare const decrypt: (data: Uint8Array, key: Uint8Array, { name, iv, additionalData, tagLength }: import("./params").cipherOptions) => Promise; export declare const wrapKey: (keyToBeWrapped: Uint8Array, wrappingKey: Uint8Array, { name }: { name: "AES-KW"; }) => Promise; export declare const unwrapKey: (wrappedKey: Uint8Array, wrappingKey: Uint8Array, { name }: { name: "AES-KW"; }) => Promise; declare const _default: { encrypt: (msg: Uint8Array, key: Uint8Array, { name, iv, additionalData, tagLength }: import("./params").cipherOptions) => Promise; decrypt: (data: Uint8Array, key: Uint8Array, { name, iv, additionalData, tagLength }: import("./params").cipherOptions) => Promise; wrapKey: (keyToBeWrapped: Uint8Array, wrappingKey: Uint8Array, { name }: { name: "AES-KW"; }) => Promise; unwrapKey: (wrappedKey: Uint8Array, wrappingKey: Uint8Array, { name }: { name: "AES-KW"; }) => Promise; }; export default _default;