import { Arity1, Is, IsNot } from '@typed/lambda'; /** * Wrap a function in a negation * @param :: (a -> b) * @returns :: (a -> boolean) */ export declare const complement: { (fn: Is): IsNot; (fn: IsNot): Is; (fn: Arity1): Arity1; }; //# sourceMappingURL=complement.d.ts.map