/** * PostgreSQL Statistics Tools - Outlier Detection * * Detect statistical outliers using IQR or Z-score methods. * 1 tool total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; /** * Outlier detection via IQR or Z-score */ export declare function createStatsOutliersTool(adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=outlier.d.ts.map