/** Detects whether `source` is P.A.C.K.E.R. coded. */ export declare function detectPacked(source: string): boolean; /** Unpacks P.A.C.K.E.R. packed js code. */ export declare function unpackV2(source: string): string; /** Unpack the code from the /packer/ (Doesn't work in NODE.JS, only in WEB). * @see http://matthewfl.com/unPacker.html * @param {string} code The packed code * @returns {string} The unpacked code * @author Matthew Flaschen */ export declare function disabled_unpackV1(code: string): string;