/**
 * 2024-09-07:  Migrated from the same folder in fps-library-v2/banner/features/Tricky/...
 */
export declare function ecrptMeOriginalTest(str: string): string;
/**
 *  NOTE:  Just swap encrpt and decrpt to reverse function
 *
  function ecrptMeOriginalTestX( str ) {
    let result = '';

    for (var i = 0; i < str.length; i++) {
      let testChar = str.charAt(i);

      let idx = encrpt.indexOf( testChar ) ;
      //console.log( testChar, i, idx);

      if ( idx === -1 ) {
        result += testChar;
      } else if ( isOdd(i) === true ){
        result += decrpt.charAt(decrpt.length -1 - idx);
      } else {
        result += decrpt.charAt(idx);
      }
    }
    return result;
  }
 */
//# sourceMappingURL=logTest.d.ts.map