export declare const asyncFlatMap: <ItemType>(array: ItemType[], callback: (item: ItemType, index: number, array: ItemType[]) => Promise<readonly ItemType[]>) => Promise<ItemType[]>;
