import { TObject } from "."; export declare namespace dcrypto { function encode_xor(text: string, len?: number): any; function decode_xor(text: string, len?: number): any; function encodeObjXor(text: TObject, len?: number): any; function decodeObjXor(text: TObject, len?: number): any; /** summary of the two TypeScript functions (encodeJsonToBase64 and decodeBase64ToJson) designed to obfuscate JSON data using Base64 encoding and decoding. */ function encodeJsonToBase64(jsonData: object): string; /** summary of the two TypeScript functions (encodeJsonToBase64 and decodeBase64ToJson) designed to obfuscate JSON data using Base64 encoding and decoding. */ function decodeBase64ToJson(base64String: string): object; }