import { BaseCipherEncodingOptions } from "../types/options.js";
import "../types/index.js";
import { BaseAesEncryptAndDecrypt } from "./_internals/base/encrypt-and-decrypt.js";
import { BinaryLike } from "node:crypto";

//#region src/aes/cfb8.d.ts
declare class Cfb8 extends BaseAesEncryptAndDecrypt {
  constructor(key: BinaryLike, encodingOptions?: BaseCipherEncodingOptions);
}
//#endregion
export { Cfb8 };
//# sourceMappingURL=cfb8.d.ts.map