import type { InsightAlgorithm } from '../../type';
import { type DataInsightExtractContext, type Insight } from '../../type';
export interface PageHinkleyOptions {
    delta?: number;
    lambda?: number;
    threshold?: number;
}
export declare const pageHinkleyFunc: (context: DataInsightExtractContext, options: PageHinkleyOptions) => Insight[];
export declare const PageHinkleyAlg: InsightAlgorithm;
