/// import { Observable } from '../observer'; /** @ignore */ export declare const isFunction: (x: any) => x is Function; /** @ignore */ export declare const isObject: (x: any) => x is Object; /** @ignore */ export declare const isPromise: (x: any) => x is PromiseLike; /** @ignore */ export declare function isArrayLike(x: any): x is ArrayLike; /** @ignore */ export declare function isIterable(x: any): x is Iterable; /** @ignore */ export declare function isIterator(x: any): x is Iterable; /** @ignore */ export declare function isAsyncIterable(x: any): x is AsyncIterable; /** @ignore */ export declare function isObservable(x: any): x is Observable; /** @ignore */ export declare const isReadableNodeStream: (x: any) => x is NodeJS.ReadableStream; /** @ignore */ export declare const isWritableNodeStream: (x: any) => x is NodeJS.WritableStream; /** @ignore */ export declare const isReadableDOMStream: (x: any) => x is ReadableStream; /** @ignore */ export declare const isWritableDOMStream: (x: any) => x is WritableStream; /** @ignore */ export declare const isFetchResponse: (x: any) => x is Response;