/** * Wrap ensures an object is an array. * ``` * wrap("str") => ["str"] * wrap(["str"]) => ["str"] * ``` */ export declare const wrap: (object: T | T[]) => T[]; /** * Loops over each array position, runs the callback with the corresponding items, and collects the results. */ export declare const mapPairs: (left: Left[], right: Right[], fn: (left: Left, right: Right) => Result) => Result[];