import type { InsightAlgorithm } from '../../type';
import { type DataInsightExtractContext, type Insight } from '../../type';
export interface OverallTrendingOptions {
    alpha?: number;
    calcScope?: boolean;
}
export declare const overallTrendingAlgo: (context: DataInsightExtractContext, options: OverallTrendingOptions) => Insight[];
export declare const OverallTrending: InsightAlgorithm;
