import { ChartPlugin } from '../types'; import { PluginAnomalyDetectionConfig } from './types'; export type { PluginAnomalyDetectionConfig, AnomalyDetectionResult, AnomalyPoint, AnomalyMethod } from './types'; export declare const manifestAnomalyDetection: { id: string; name: string; version: `${number}.${number}.${number}`; description: string; author: string; category: "analysis"; }; /** * Anomaly Detection Plugin Factory */ export declare function PluginAnomalyDetection(userConfig?: PluginAnomalyDetectionConfig): ChartPlugin;