export declare class CryptoService { private privateKey; private publicKey; private path; constructor(); setPath(path: string): this; loadKeys(): this; encryptData(data: string): string; decryptData(encryptedData: string): string; }