import { type TArg } from "@noble/hashes/utils.js"; import type { AEADMode, Cipher } from "../types.js"; /** * **EN:** Multilinear Galois (MGM) mode (AEAD) * * **RU:** Режим шифрования с имитозащитой и ассоциированными данными (AEAD) */ export declare const mgm: (cipher: Cipher, nonce: TArg, tagSize?: number) => AEADMode;