import * as z from "zod/v3"; /** * Describes the request body of the /deleteemployee API call */ export type DeleteEmployeeRequest = { /** * Version number for document for optimistic concurrency control. If absent or 0 then no version checks are done. */ version?: number | undefined; /** * The deleted employee's email */ employeeEmail: string; }; /** @internal */ export type DeleteEmployeeRequest$Outbound = { version?: number | undefined; employeeEmail: string; }; /** @internal */ export declare const DeleteEmployeeRequest$outboundSchema: z.ZodType; export declare function deleteEmployeeRequestToJSON(deleteEmployeeRequest: DeleteEmployeeRequest): string; //# sourceMappingURL=deleteemployeerequest.d.ts.map