type AwaitedProps

= { [K in keyof P]: Awaited }; /** * Returns a Promise to an object with all the properties resolved as promises */ export declare function resolveValues

(obj: P): Promise>; export {};