import { type TArg } from "@noble/hashes/utils.js"; import type { BlockMode, Cipher } from "../types.js"; /** * **EN:** Cipher Block Chaining (CBC) mode * * **RU:** Режим простой замены с зацеплением */ export declare const cbc: (cipher: Cipher, iv: TArg) => BlockMode;