declare const _default: { aesGcmEncrypt: (text: string, aesKey: CryptoKey, ivFirst?: boolean) => Promise; aesGcmDecrypt: (encryptedBase64: string, aesKey: CryptoKey, ivFirst?: boolean) => Promise; aesCryptoKey: (sharedBase64: string) => Promise; aesCryptoKeyFromHkdf: (sharedBase64: string, saltBase64: string, infoBase64: string) => Promise; aesGcmKey: (rawData: BufferSource) => Promise; rawKeyHex: (cryptoKey: CryptoKey) => Promise; rawKeyBytes: (cryptoKey: CryptoKey) => Promise; }; export default _default;