export declare function isPromiseMethod(x: string | symbol): x is "then" | "catch" | "finally"; export declare function isKVMap(x: unknown): x is Record; export declare const isAsyncIterable: (x: unknown) => x is AsyncIterable; export declare const isIteratorLike: (x: unknown) => x is Iterator; export declare const isGenerator: (x: unknown) => x is Generator; export declare const isThenable: (x: unknown) => x is Promise; export declare const isReadableStream: (x: unknown) => x is ReadableStream;