import { Expected } from './types'; import { Matcher } from './Matcher'; export declare function isIterator(obj: any): obj is Iterator; export declare function isIterable(obj: any): obj is Iterable; export declare function isSyncMatcher(expected: Expected): expected is Matcher;