import { AsyncSequence } 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 {Promise} */ indexOf(this: AsyncSequence, element: T): Promise; }