/** * PostgreSQL Statistics Tools - Distribution Analysis * * Analyze data distribution with histogram buckets, skewness, and kurtosis. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; /** * Distribution analysis with histogram */ export declare function createStatsDistributionTool(adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=distribution.d.ts.map