import * as z from "zod"; export type WeekdayIntervalV2 = { /** * End time of the interval, in 24hr format */ endTime: string; /** * Start time of the interval, in 24hr format */ startTime: string; /** * Weekday this interval applies to */ weekday: string; }; /** @internal */ export declare const WeekdayIntervalV2$inboundSchema: z.ZodType; /** @internal */ export type WeekdayIntervalV2$Outbound = { end_time: string; start_time: string; weekday: string; }; /** @internal */ export declare const WeekdayIntervalV2$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 WeekdayIntervalV2$ { /** @deprecated use `WeekdayIntervalV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WeekdayIntervalV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WeekdayIntervalV2$Outbound` instead. */ type Outbound = WeekdayIntervalV2$Outbound; } //# sourceMappingURL=weekdayintervalv2.d.ts.map