/** * Removes all given values from array using `SameValueZero` for equality comparisons. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 3,000 bytes * - Micro-dash: 166 bytes */ export declare function pull(array: T[], ...values: T[]): T[];