/**
 * Checks if given value is a Promise-like object.
 */
export declare function isPromiseLike(arg: any): arg is Promise<any>;
