type PromiseObject = Record>; type Return = Promise<{ [Key in keyof Value]: Awaited; }>; /** * Waits for all object properties are resolved, * and returns an object with those properties and their values. */ export declare const waitForAllProperties: (promiseObject: Value) => Return; export {};