/**
 * Check if argument is a Promise
 * @param arg
 * @returns {boolean}
 */
export declare function isPromise(arg: unknown): arg is Promise<any>;
