import { Any, Options } from "../../../types";
interface InputExpr {
    n: Any;
    input: Any;
}
/**
 * Returns a specified number of elements from the end of an array.
 */
export declare const $lastN: (obj: Any, expr: InputExpr, options: Options) => Any;
export {};
