declare type UnwrapPromise

= P extends PromiseLike ? V : P; declare type Input = Record; declare type Result = { [P in keyof Obj]: UnwrapPromise; }; export default function combinePromises(obj: Obj): Promise>; export {};