import { PlainObject } from '../types'; declare type PropertyResolverFunction = (value: any, key: string) => any; export declare const promiseResolveObject: (object: PlainObject, resolver?: PropertyResolverFunction) => Promise; export {};