/**
 * 说明
 */
declare const isPromiseLike: <T>(value: unknown) => value is PromiseLike<T>;

export { isPromiseLike };
