export declare function generateNewAesGcmKey(): Promise; export declare function exportAesGsmKeyBytes(key: CryptoKey): Promise; export declare function importAesGsmKeyBytes(key: Uint8Array): Promise; export declare function encryptAesGcm(key: CryptoKey, data: Uint8Array): Promise<{ ciphertext: Uint8Array; iv: Uint8Array; }>; export declare function decryptAesGcm(key: CryptoKey, ciphertext: Uint8Array, iv: Uint8Array): Promise; //# sourceMappingURL=cryptoAesGcm.d.ts.map