import { Any, AnyObject, Options } from "../../types";
interface InputExpr {
    n: Any;
    input: Any;
}
/**
 * Returns an aggregation of the minimum value n elements within a group.
 */
export declare const $minN: (coll: AnyObject[], expr: InputExpr, options: Options) => unknown[];
export {};
