/**
 * Checks if the given input is an instance of the Promise object
 */
declare const isPromise: (prom: any) => boolean;
export default isPromise;
