/** * Determines whether or not an object is promise-like (i.e. "thenable"). * @param obj - the object to check * @returns true if the object is promise-like */ export declare function isPromiseLike(obj: any): obj is Promise;