import { Any, AnyObject, Options } from "../../../types";
/**
 * Merge two lists together.
 *
 * Transposes an array of input arrays so that the first element of the output array would be an array containing,
 * the first element of the first input array, the first element of the second input array, etc.
 */
export declare const $zip: (obj: AnyObject, expr: {
    inputs: Any[];
    useLongestLength: boolean;
    defaults: Any;
}, options: Options) => Any;
