/**
 * A syntax sugar for Promise.all().
 */
export declare function promiseAll<TList extends readonly unknown[]>(promises: TList): Promise<{
    -readonly [P in keyof TList]: Awaited<TList[P]>;
}>;
//# sourceMappingURL=promiseAll.d.ts.map