export default class SessionEncryption { static host: string; static encrypt(text: string, secretKey?: string): string; static decrypt(text: string, secretKey?: string): string; static createKey(secretKey: string): { key: any; encryptionIV: any; }; } //# sourceMappingURL=SessionEncryption.d.ts.map