import { CurriedFunction2 } from '../typings/types'; interface Remove { (start: number, count: number, list: ArrayLike): T[]; (start: number, count: number): (list: ArrayLike) => T[]; (start: number): CurriedFunction2, T[]>; } /** * Removes the sub-list of `list` starting at index `start` and containing * `count` elements. _Note that this is not destructive_: it returns a copy of * the list with the changes. * No lists have been harmed in the application of this function. * * @param {Number} start The position to start removing elements * @param {Number} count The number of elements to remove * @param {Array} list The list to remove from * @example * * remove(2, 3, [1,2,3,4,5,6,7,8]); //=> [1,2,6,7,8] */ declare const _default: Remove; export default _default;