declare const map: <T>(array: T[], cb: (arg: T) => T) => T[];
export default map;
