/** * Retrieves the last index that resolves the predicate * * @export * @template T * @param {T[]} arr the source array * @param {Function} predicate the predicate with the logic * @returns {number} the position of the found element, -1 if not found */ export declare function findLastIndex(arr: T[], predicate: (val: T) => boolean): number;