import { ConfigService } from "@nestjs/config";
export declare class EncryptionService {
    private readonly configService;
    private readonly algorithm;
    private readonly key?;
    private readonly iv;
    constructor(configService: ConfigService);
    secret(): string;
    encrypt(text: string): string;
    decrypt(encryptedText: string): string;
}
