import type { compareFn, mapFn } from './_types'; /** * Finds index of largest value. * @param x an array * @param fc compare function (a, b) * @param fm map function (v, i, x) */ declare function maxIndex(x: Iterable, fc?: compareFn, fm?: mapFn): number; export default maxIndex; //# sourceMappingURL=index.d.ts.map