export interface BaseCipherEncodingOptions {
    /**
     * @default 'hex'
     */
    decryptInput?: BufferEncoding;
    /**
     * @default 'utf-8'
     */
    decryptOutput?: BufferEncoding;
    /**
     * @default 'utf-8'
     */
    encryptInput?: BufferEncoding;
    /**
     * @default 'hex'
     */
    encryptOutput?: BufferEncoding;
    /**
     * @default 'utf-8'
     */
    key?: BufferEncoding;
    /**
     * @default 'hex'
     */
    iv?: BufferEncoding;
}
export declare namespace BaseCipherEncodingOptions {
    type Decrypt = Pick<BaseCipherEncodingOptions, 'decryptInput' | 'decryptOutput' | 'iv'>;
    type Encrypt = Pick<BaseCipherEncodingOptions, 'encryptInput' | 'encryptOutput' | 'iv'>;
}
//# sourceMappingURL=options.d.ts.map