export declare const map: (xs: ArrayLike, f: (a: A) => B) => B[];
/** map a function over an array, then map another function over every item except the last */
export declare const mapDelimit: (xs: ArrayLike, f: (a: A) => B, delimit: (b: B) => B) => B[];
export declare const sort: (xs: ArrayLike, compareFn?: ((a: A, b: A) => number) | undefined) => A[];