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