import type { BinaryLike } from 'node:crypto';
import type { AesCipherEncodingOptions } from '../types';
import { BaseAesEncryptAndDecrypt } from './base/encrypt-and-decrypt';
export declare class Cbc extends BaseAesEncryptAndDecrypt {
    constructor(key: BinaryLike, encodingOptions?: AesCipherEncodingOptions);
}
//# sourceMappingURL=cbc.d.ts.map