import type { NodePath } from '@babel/traverse'; import type * as t from '@babel/types'; import type { StringArray } from './string-array'; /** * A function that is called with >= 1 numeric/string arguments * and returns a string from the string array. It may also decode * the string with Base64 or RC4. */ export declare class Decoder { name: string; path: NodePath; constructor(name: string, path: NodePath); collectCalls(): NodePath[]; } export declare function findDecoders(stringArray: StringArray): Decoder[]; //# sourceMappingURL=decoder.d.ts.map