import { Any, AnyObject, Options } from "../../types";
/**
 * Returns an approximation of the median, the 50th percentile, as a scalar value.
 */
export declare const $median: (obj: AnyObject, expr: {
    input: Any;
    method: "approximate" | "exact";
}, options: Options) => Any;
