/** @module function/not.ts */ import { Complement } from '../helper-types'; /** * Evaluates a value as a "truthy" and returns the opposing boolean value * * @param value * @sig a -> bool * @example * not('abc') //=> false * not(true) // => false * not(0) // => true */ export declare const not: (value: A) => Complement; export default not;