import type { BlockMode, Cipher } from "../types.js"; /** * **EN:** Electronic Codebook (ECB) mode * * **RU:** Режим простой замены */ export declare const ecb: (cipher: Cipher) => BlockMode;