import { SecureEncryptionSdkConfig } from './TYPES';
export declare class SecureEncryption {
    #private;
    /**
     * Creates an instance of SecureEncryption.
     *
     * @constructor
     * @param [config]
     */
    constructor(config?: SecureEncryptionSdkConfig);
    encryptAES(text: string, secretKey: string): string;
    decryptAES(encryptedText: string, secretKey: string): string;
    encryptRSA(text: string): Promise<string>;
    decryptRSA(encryptedText: string): Promise<string>;
}
