/** * postgres-mcp - Statistics Tool Schemas * * Preprocessed input schemas for handler parsing. * Re-exports base schemas and preprocessing utilities from sub-modules. */ import { z } from "zod"; export { StatsDescriptiveSchemaBase, StatsPercentilesSchemaBase, StatsCorrelationSchemaBase, StatsRegressionSchemaBase, StatsTimeSeriesSchemaBase, StatsDistributionSchemaBase, StatsHypothesisSchemaBase, StatsSamplingSchemaBase, StatisticsObjectSchema, } from "./base-schemas.js"; export { parseSchemaTable, VALID_INTERVALS, INTERVAL_SHORTHANDS, preprocessBasicStatsParams, preprocessCorrelationParams, preprocessRegressionParams, preprocessTimeSeriesParams, preprocessHypothesisParams, preprocessDistributionParams, preprocessSamplingParams, } from "./preprocessing.js"; export declare const StatsDescriptiveSchema: z.ZodPreprocess; column: z.ZodString; schema: z.ZodOptional; where: z.ZodOptional; params: z.ZodOptional>; groupBy: z.ZodOptional; }, z.core.$strip>>; export declare const StatsPercentilesSchema: z.ZodPreprocess; column: z.ZodString; percentiles: z.ZodOptional>; schema: z.ZodOptional; where: z.ZodOptional; params: z.ZodOptional>; groupBy: z.ZodOptional; _percentileScaleWarning: z.ZodOptional; }, z.core.$strip>>; export declare const StatsCorrelationSchema: z.ZodPreprocess; column1: z.ZodOptional; column2: z.ZodOptional; x: z.ZodOptional; y: z.ZodOptional; schema: z.ZodOptional; where: z.ZodOptional; params: z.ZodOptional>; groupBy: z.ZodOptional; }, z.core.$strip>>; export declare const StatsRegressionSchema: z.ZodPreprocess; xColumn: z.ZodOptional; yColumn: z.ZodOptional; independentColumn: z.ZodOptional; dependentColumn: z.ZodOptional; x: z.ZodOptional; y: z.ZodOptional; column1: z.ZodOptional; column2: z.ZodOptional; schema: z.ZodOptional; where: z.ZodOptional; params: z.ZodOptional>; groupBy: z.ZodOptional; }, z.core.$strip>>; export declare const StatsTimeSeriesSchema: z.ZodPreprocess; valueColumn: z.ZodOptional; timeColumn: z.ZodOptional; value: z.ZodOptional; time: z.ZodOptional; aggregation: z.ZodOptional>; schema: z.ZodOptional; where: z.ZodOptional; params: z.ZodOptional>; limit: z.ZodOptional; groupBy: z.ZodOptional; groupLimit: z.ZodOptional; interval: z.ZodEnum<{ hour: "hour"; second: "second"; minute: "minute"; day: "day"; week: "week"; month: "month"; year: "year"; }>; }, z.core.$strip>>; export declare const StatsDistributionSchema: z.ZodPreprocess; column: z.ZodString; buckets: z.ZodOptional; schema: z.ZodOptional; where: z.ZodOptional; params: z.ZodOptional>; groupBy: z.ZodOptional; groupLimit: z.ZodOptional; }, z.core.$strip>>; export declare const StatsHypothesisSchema: z.ZodPreprocess; column: z.ZodString; hypothesizedMean: z.ZodOptional; populationStdDev: z.ZodOptional; schema: z.ZodOptional; where: z.ZodOptional; params: z.ZodOptional>; groupBy: z.ZodOptional; testType: z.ZodEnum<{ t_test: "t_test"; z_test: "z_test"; }>; mean: z.ZodOptional; expected: z.ZodOptional; sigma: z.ZodOptional; }, z.core.$strip>, z.ZodTransform<{ table: string; column: string; testType: "t_test" | "z_test"; hypothesizedMean: {}; populationStdDev: {} | undefined; schema: string | undefined; where: string | undefined; params: unknown[] | undefined; groupBy: string | undefined; }, { table: string; column: string; testType: "t_test" | "z_test"; tableName?: string | undefined; hypothesizedMean?: unknown; populationStdDev?: unknown; schema?: string | undefined; where?: string | undefined; params?: unknown[] | undefined; groupBy?: string | undefined; mean?: number | undefined; expected?: number | undefined; sigma?: number | undefined; }>>>; export declare const StatsSamplingSchema: z.ZodPreprocess; method: z.ZodOptional>; sampleSize: z.ZodOptional; percentage: z.ZodOptional; schema: z.ZodOptional; select: z.ZodOptional>; where: z.ZodOptional; params: z.ZodOptional>; }, z.core.$strip>>; //# sourceMappingURL=input.d.ts.map