declare module "@extra-array/search-infix-right" {
import type { compareFn, mapFn } from "./_types";
/**
 * Finds last 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 searchInfixRight<T, U = T>(x: Iterable<T>, y: Iterable<T>, fc?: compareFn<T | U>, fm?: mapFn<T, T | U>): number;
export = searchInfixRight;
//# sourceMappingURL=searchInfixRight.d.ts.map}
