export type MapCallback = (value: T, index: number, array: T[]) => N; export declare function map(array: T[], callback: MapCallback): N[];