import Predicate from "../../functional/Predicate"; import Supplier from "../../functional/Supplier"; declare function findIndexOrThrow(this: T[], predicate: Predicate, supply?: Supplier): number; export default findIndexOrThrow; declare global { interface Array { findIndexOrThrow: typeof findIndexOrThrow; } }