import { Any, AnyObject, Options } from "../../../types";
interface InputExpr {
    n: Any;
    input: Any;
}
/**
 * Returns the n smallest values in an array.
 */
export declare const $minN: (obj: AnyObject, expr: InputExpr, options: Options) => Any;
export {};
