///
interface IEncryptionOptions {
secret: string;
}
export default function Encryption(options: IEncryptionOptions): {
_algorithm: string;
_secret: string;
encrypt(input: Buffer | string): Promise;
encryptFileUtf8(filePath: string): Promise;
decrypt(text: string): Promise;
decryptFileUtf8(filePath: string): Promise;
fileToHash(filePath: string): Promise;
parseData(value: string, isRawData?: boolean): Promise;
};
export {};