declare module "@extra-array/remove" { /** * Removes value at index. * @param x an array * @param i index */ declare function remove(x: T[], i: number): T[]; export = remove; //# sourceMappingURL=remove.d.ts.map}