import { Predicate, PredicateProducer } from './type'; export declare const isNot: PredicateProducer; export declare function isUndefinedOrEmpty(coll: Object | Array | string | undefined): boolean; export declare const isDefined: Predicate; export declare const isUndefined: Predicate; export declare function isEmpty(coll: Object | Array): boolean; export declare const flip: (v: boolean) => boolean; export declare const isArray: Predicate; export declare const isObject: Predicate; export declare const isString: Predicate;