export declare function concurrent<O extends Record<string, Promise<any>>>(ob: O): Promise<{ [K in keyof O]: Awaited<O[K]>; }>;
