/** * Check if passed object is a Promise * @param object - object to check * @returns true, if passed object is a promise, false otherwise */ export declare function isPromise(object: any): object is Promise;