import { ListIterator } from './internal/baseIteratee.type.js';
import './internal/types.js';

declare function map<T, R>(collection: ArrayLike<T> | null | undefined, iteratee: ListIterator<T, R>): R[];

export { map as default, map };
