declare module "@extra-array/count" { import type { testFn } from "./_types"; /** * Counts values which satisfy a test. * @param x an array * @param ft test function (v, i, x) */ declare function count(x: Iterable, ft: testFn): number; export = count; //# sourceMappingURL=count.d.ts.map}