export declare class ECB { private readonly _aes; constructor(key: number[] | Uint8Array); encrypt(bytes: ArrayLike): Uint8Array; decrypt(bytes: ArrayLike): Uint8Array; }