import type { ExperimentMetric, ExperimentReading, HydratedExperiment } from "../shared/types.js"; export type { HydratedExperiment } from "../shared/types.js"; export declare function experimentHorizonEndsAt(startedAt: string, horizonDays: number): string; export declare function readMetrics(id: string): ExperimentMetric[]; export declare function readReadings(id: string): ExperimentReading[]; export declare function rowToExperiment(row: Record, metrics: ExperimentMetric[], readings: ExperimentReading[]): HydratedExperiment; export declare function hydrateExperiments(rows: Record[]): HydratedExperiment[]; //# sourceMappingURL=hydrate.d.ts.map