/** * Removes elements from array corresponding to indexes and returns an array of removed elements. * * *Note:* This method mutates `array`. * * Differences from lodash: * - behavior is undefined when attempting to pull attributes keyed with anything other than positive integers * - does not support deep paths * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 7,672 bytes * - Micro-dash: 156 bytes */ export declare function pullAt(array: any[], ...indexes: Array): any[];