import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; export declare const IntervalType: { readonly Hourly: "hourly"; readonly Daily: "daily"; readonly Weekly: "weekly"; }; export type IntervalType = ClosedEnum; export type ScheduleRotationHandoverV2 = { interval?: number | undefined; intervalType?: IntervalType | undefined; }; /** @internal */ export declare const IntervalType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const IntervalType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IntervalType$ { /** @deprecated use `IntervalType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Hourly: "hourly"; readonly Daily: "daily"; readonly Weekly: "weekly"; }>; /** @deprecated use `IntervalType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Hourly: "hourly"; readonly Daily: "daily"; readonly Weekly: "weekly"; }>; } /** @internal */ export declare const ScheduleRotationHandoverV2$inboundSchema: z.ZodType; /** @internal */ export type ScheduleRotationHandoverV2$Outbound = { interval?: number | undefined; interval_type?: string | undefined; }; /** @internal */ export declare const ScheduleRotationHandoverV2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ScheduleRotationHandoverV2$ { /** @deprecated use `ScheduleRotationHandoverV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ScheduleRotationHandoverV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ScheduleRotationHandoverV2$Outbound` instead. */ type Outbound = ScheduleRotationHandoverV2$Outbound; } //# sourceMappingURL=schedulerotationhandoverv2.d.ts.map