import * as z from "zod/v3"; import { EmployeeInfoDefinition, EmployeeInfoDefinition$Outbound } from "./employeeinfodefinition.js"; /** * Info about an employee and optional version for that info */ export type IndexEmployeeRequest = { /** * Describes employee info */ employee: EmployeeInfoDefinition; /** * Version number for the employee object. If absent or 0 then no version checks are done */ version?: number | undefined; }; /** @internal */ export type IndexEmployeeRequest$Outbound = { employee: EmployeeInfoDefinition$Outbound; version?: number | undefined; }; /** @internal */ export declare const IndexEmployeeRequest$outboundSchema: z.ZodType; export declare function indexEmployeeRequestToJSON(indexEmployeeRequest: IndexEmployeeRequest): string; //# sourceMappingURL=indexemployeerequest.d.ts.map