import { z } from 'zod'; /** * The docType value for WorkoutMicrocycle documents. */ export declare const WorkoutMicrocycle_docType = "workoutMicrocycle"; /** * The schema for {@link WorkoutMicrocycle} documents. */ export declare const WorkoutMicrocycleSchema: z.ZodObject<{ docType: z.ZodDefault>; workoutMesocycleId: z.ZodOptional>>>; startDate: z.ZodDate; endDate: z.ZodDate; sessionOrder: z.ZodDefault>>>; completedDate: z.ZodOptional>; createdDate: z.ZodDefault; lastUpdatedDate: z.ZodDefault; _id: z.ZodPipe, z.ZodTransform<`${string}-${string}-${string}-${string}-${string}`, string>>; userId: z.ZodPipe>; }, z.core.$strip>; /** * Represents a microcycle - the shortest cycle of training that includes all * workout sessions and rest days and is repeated. * * Typically, but not always, this is a week (7 days). */ export type WorkoutMicrocycle = z.infer; //# sourceMappingURL=WorkoutMicrocycle.d.ts.map