/** * This method is like `pull` except that it accepts an array of values to remove. * * **Note:** Unlike `difference`, this method mutates array. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 815 bytes * - Micro-dash: 174 bytes */ export declare function pullAll(array: T[], values: T[]): T[];