import { Predicate } from './types'; /** * Negates result of a predicate * * @example * const isNotEmpty = is.not(is.empty); * isNotEmpty([1, 2]);// true * // same as * is.not(is.empty, [1, 2]); // true * isNotEmpty(''); // false */ export default function isNot(predicate: Predicate): Predicate;