/**
 * Checks whether `arg` is a promise or not.
 *
 * @returns {boolean}
 */
export declare function isPromise<T>(arg: T | Promise<T>): arg is Promise<T>;
