import * as z from "zod/v3"; export type DepartmentCreateRequestBody = { /** * Name of the department */ title: string; }; /** @internal */ export type DepartmentCreateRequestBody$Outbound = { title: string; }; /** @internal */ export declare const DepartmentCreateRequestBody$outboundSchema: z.ZodType; export declare function departmentCreateRequestBodyToJSON(departmentCreateRequestBody: DepartmentCreateRequestBody): string; //# sourceMappingURL=departmentcreaterequestbody.d.ts.map