import { Sequence } from "../../sequency"; export declare class IndexOf { /** * Returns the zero-based index of the given `element` or -1 if the sequence does not contain the element. * * @param {T} element * @returns {number} */ indexOf(this: Sequence, element: T): number; }