import { Value } from '../../types';
/**
 * Return all _values that fall within the Mean Absolute Deviation of the mean
 *
 * @param _values A list of Values
 * @returns A filtered list of Values
 */
export declare function mad(_values: Value[]): Value[];
