/**
 * 校验是否是 promise
 */
declare function isPromise<T = any>(val: unknown): val is Promise<T>;

export { isPromise };
