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.
*/exportdeclareconst$map: (obj: AnyObject, expr: {
input: Any[];
as: string;
in: Any;
}, options: Options) =>Any;