import { Any, AnyObject, Options } from "../../../types";
/**
 * Applies a sub-expression to each element of an array and returns the array of resulting values in order.
 */
export declare const $map: (obj: AnyObject, expr: {
    input: Any[];
    as: string;
    in: Any;
}, options: Options) => Any;
