/**
 * Promise.all() but allows all functions to run even if one throws syncronously
 */
export declare function promiseAllMaybeAsync<T>(fns: Array<() => Promise<T>>): Promise<T[]>;
//# sourceMappingURL=promises.d.ts.map