/** * 返回给定函数的否定版本函数。 * * @example * var isFalsy = negate(Boolean) * find([-2, -1, 0, 1, 2], isFalsy) * => 0 * * @param predicate 给定函数 */ export declare function negate(predicate: F): (this: unknown, ...args: unknown[]) => boolean;