/// <reference types="node" />
import { HexBase64BinaryEncoding, Utf8AsciiBinaryEncoding } from 'crypto';
export declare const config: {
    KEY_LENGTH: number;
    IV_LENGTH: number;
    BASE64_ENCODING: HexBase64BinaryEncoding;
    UTF8_ENCODING: Utf8AsciiBinaryEncoding;
    CIPHER_ALGORITHM: string;
    UTF8_FILE_ENCODING: string;
    FILE_EXTENSION: string;
};
