export declare function asyncForEach(array: any[], callback: (item: any, index: number, originalArray: any[]) => any): Promise; export declare const uuidv4: () => string; export declare const uniqArray: (data: any[]) => any[]; export declare const isWindows: () => boolean; export declare const isLinux: () => boolean; /** * replace single backslash with double backslash */ export declare const escapeWinSlashes: (path: string) => string; export declare const getMacrosPath: () => string; /** * sas code requires forward slashes as path separator in file or folder paths. * So, this method replaces OS specific path separator with forward slash */ export declare const generatePathForSas: (resourcePath: string) => string;