import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Employee, Employee$Outbound } from "./employee.js"; import { Schedule, Schedule$Outbound } from "./schedule.js"; export type EmployeeSchedules = { employee?: Employee | undefined; schedules?: Array | null | undefined; }; /** @internal */ export declare const EmployeeSchedules$inboundSchema: z.ZodType; /** @internal */ export type EmployeeSchedules$Outbound = { employee?: Employee$Outbound | undefined; schedules?: Array | null | undefined; }; /** @internal */ export declare const EmployeeSchedules$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 EmployeeSchedules$ { /** @deprecated use `EmployeeSchedules$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EmployeeSchedules$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EmployeeSchedules$Outbound` instead. */ type Outbound = EmployeeSchedules$Outbound; } export declare function employeeSchedulesToJSON(employeeSchedules: EmployeeSchedules): string; export declare function employeeSchedulesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeeschedules.d.ts.map