import { IEncryptionResults } from './types.js'; import '@tradetrust-tt/tradetrust'; import '@tradetrust-tt/tradetrust/dist/types/shared/utils'; /** * Decrypts a given ciphertext along with its associated variables. * @param {IEncryptionResults} encryptionResults - Encryption result object containing cipherText (base64), tag (base64), iv (base64), key (hex), and type. * @returns {string} Decrypted plaintext string. */ declare const decryptString: ({ cipherText, tag, iv, key, type }: IEncryptionResults) => string; export { decryptString };