import type { InsightAlgorithm } from '../../type';
export interface ExtremeValueOptions {
    upperThreshold?: number;
    lowerThreshold?: number;
}
export declare const ExtremeValue: InsightAlgorithm;
