/** * Co-occurrence Module * * Plugin co-occurrence tracking and analysis. * * @since v1.66.1 */ export type { UsageDataConfig, AnonymousUsageReport, LocalCooccurrenceRecord, PairStatistics, CommunityCooccurrenceData, ABTestConfig, ABTestMetrics, } from './cooccurrence-types.js'; export { DEFAULT_USAGE_CONFIG, CONFIDENCE_THRESHOLDS, } from './cooccurrence-types.js'; export { CooccurrenceService, getCooccurrenceService, resetCooccurrenceService, } from './cooccurrence-service.js'; export { mean, standardDeviation, wilsonConfidenceInterval, correlationCoefficient, getConfidenceLevel, isSignificantDifference, detectTrend, findPluginClusters, calculateCentrality, getSummaryStatistics, } from './statistics.js'; //# sourceMappingURL=index.d.ts.map