import { Any, AnyObject, Options } from "../../../types";
/**
 * Defines variables for use within the scope of a sub-expression and returns the result of the sub-expression.
 */
export declare const $let: (obj: AnyObject, expr: {
    vars: AnyObject;
    in: Any;
}, options: Options) => Any;
