declare class CryptoService { static instance: CryptoService; static init(secret: string): CryptoService; private secret; private algorithm; private IV_LENGTH; constructor(secret: string); encrypt(text: string): string; decrypt(text: string): string; } export { CryptoService };