/** * PostgreSQL Statistics Tools - Hypothesis Testing * * Perform one-sample t-test or z-test against a hypothesized mean. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; /** * Hypothesis testing (t-test or z-test) */ export declare function createStatsHypothesisTool(adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=hypothesis.d.ts.map