import type { testFn } from './_types'; /** * Finds indices of values passing a test. * @param x an array * @param ft test function (v, i, x) */ declare function findIndices(x: Iterable, ft: testFn): number[]; export default findIndices; //# sourceMappingURL=index.d.ts.map