import type { ExperimentStoreResult } from "../shared/types.js"; import { type HydratedExperiment } from "./hydrate.js"; import { type ConcludeExperimentInput, type CreateExperimentInput, type UpdateExperimentInput } from "./store.js"; export interface ExperimentCheckInInput { schedule: string; employee?: string; timezone?: string; } export declare function createExperimentWithCheckIn(input: CreateExperimentInput, checkIn?: ExperimentCheckInInput): ExperimentStoreResult; export declare function updateExperimentAndRefreshCheckIn(id: string, input: UpdateExperimentInput): ExperimentStoreResult; export declare function concludeExperimentAndDisableCheckIn(id: string, input: ConcludeExperimentInput): ExperimentStoreResult; //# sourceMappingURL=check-in.d.ts.map