declare const pipe: (...fns: Function[]) => (param: any) => Promise; declare const syncMap: (array: any[], fn: Function) => Promise; declare const flatArray: (array: any[]) => any[]; export { pipe, syncMap, flatArray };