export declare const allSeries: (items: any[], promiseFn: (arg: any) => Promise, chunkSize: number, catchCallback: (error: any) => any) => Promise; export declare const allSettledSeries: (items: any[], promiseFn: (arg: any) => Promise, chunkSize: number, catchCallback: (error: any) => any) => Promise; export declare const allSettled: (promises: Promise[]) => Promise<({ state: string; value: any; } | { state: string; value: any; })[]>; export declare const firstFulfilled: (promises: Promise[]) => Promise; export declare const first: (promises: Promise[]) => Promise;