import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EmployeeCustomField } from "./employeecustomfield.js"; /** * A list of an employee's custom fields */ export type EmployeeCustomFieldList = { customFields?: Array | undefined; }; /** @internal */ export declare const EmployeeCustomFieldList$inboundSchema: z.ZodType; export declare function employeeCustomFieldListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=employeecustomfieldlist.d.ts.map