import { Value } from '../../types';
/**
 * Return the median Value of the list of Values.
 * If the list has an even number of Values, return the mean of the two middle Values.
 */
export declare function median(_values: Value[]): Value;
