/** * Helper for finding first element index from array that meets check condition * * @param {Array} arr - target array * @param {Function} check - check function * @param {number} [startFrom=0] - index from which to start search * @returns {number} - found element index */ export declare function findIndex(arr: Array, check: Function, startFrom?: number): number; declare const _default: { findIndex: typeof findIndex; }; export default _default;