import Sequence from "./Sequence";
export declare class IndexOfLast {
    /**
     * Returns the zero-based index of the last element matching the given `predicate` or -1 if no element matches
     * the predicate.
     *
     * @param {(value: T) => boolean} predicate
     * @returns {number}
     */
    indexOfLast<T>(this: Sequence<T>, predicate: (value: T) => boolean): number;
}
