import * as z from "zod"; import { WeekdayIntervalV2, WeekdayIntervalV2$Outbound } from "./weekdayintervalv2.js"; export type WeekdayIntervalConfigV2 = { /** * The unique identifier for this set of working intervals */ id: string; /** * A human readable label for this set of working intervals */ name: string; /** * How to interpret all the intervals */ timezone: string; weekdayIntervals: Array; }; /** @internal */ export declare const WeekdayIntervalConfigV2$inboundSchema: z.ZodType; /** @internal */ export type WeekdayIntervalConfigV2$Outbound = { id: string; name: string; timezone: string; weekday_intervals: Array; }; /** @internal */ export declare const WeekdayIntervalConfigV2$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 WeekdayIntervalConfigV2$ { /** @deprecated use `WeekdayIntervalConfigV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WeekdayIntervalConfigV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WeekdayIntervalConfigV2$Outbound` instead. */ type Outbound = WeekdayIntervalConfigV2$Outbound; } //# sourceMappingURL=weekdayintervalconfigv2.d.ts.map