/** * Callback for Array.prototype.map or Array.prototype.filter * @since 1.0.0 */ export declare type ArrayMapFn = (item: I, index: number, array: I[]) => O;