declare type TOptions = { callback: (param: T, index: number) => Promise; groupSize?: number; waitExecArray: Array; }; declare function execAsyncByGroup(options: TOptions): Promise; export default execAsyncByGroup;