declare function isPromise<T = any>(val: unknown): val is Promise<T>;

export { isPromise };
