export declare function sleepPromise(ms: number): Promise; export declare const safeAwait: (promise: Promise, finallyCallback?: any) => Promise<{ result: any; error: undefined; } | { result: undefined; error: Error; }>; export declare const fetchDataArrayInBatches: (array: any[], returnResult: any, singleItemAsyncCallback: any) => Promise; //# sourceMappingURL=promiseUtils.d.ts.map