import * as z from "zod/v3"; export type DepartmentUpdateRequestBody = { /** * The current version of the object. See the [versioning guide](https://docs.gusto.com/embedded-payroll/docs/idempotency) for information on how to use this field. */ version: string; /** * Name of the department */ title: string; }; /** @internal */ export type DepartmentUpdateRequestBody$Outbound = { version: string; title: string; }; /** @internal */ export declare const DepartmentUpdateRequestBody$outboundSchema: z.ZodType; export declare function departmentUpdateRequestBodyToJSON(departmentUpdateRequestBody: DepartmentUpdateRequestBody): string; //# sourceMappingURL=departmentupdaterequestbody.d.ts.map