declare module "@extra-array/search-infix" {
import type { compareFn, mapFn } from "./_types";
/**
 * Finds first index of an infix.
 * @param x an array
 * @param y search infix
 * @param fc compare function (a, b)
 * @param fm map function (v, i, x)
 */
declare function searchInfix<T, U = T>(x: Iterable<T>, y: Iterable<T>, fc?: compareFn<T | U>, fm?: mapFn<T, T | U>): number;
export = searchInfix;
//# sourceMappingURL=searchInfix.d.ts.map}
