/** * useAnomalyDetection Hook * Anomaly detection in metrics (Folio service) */ import type { UseAnomalyDetectionOptions } from './types'; export declare const useAnomalyDetection: ({ threshold, onError }?: UseAnomalyDetectionOptions) => { anomalies: unknown[]; isLoading: boolean; error: Error; threshold: number; detectAnomalies: (metrics: unknown[]) => Promise; }; export type { UseAnomalyDetectionOptions } from './types'; //# sourceMappingURL=useAnomalyDetection.d.ts.map