export declare function arrayPrototypeFind(this: E, a: T[], predicate: FindPredicate, thisArg?: E): T | undefined; export declare type FindPredicate = (this: E, value: T, index: number, obj: T[]) => boolean; export declare function installArrayPrototypeFind(force?: boolean): void;