import * as z from "zod/v3"; /** * Information about which team an employee belongs to */ export type EmployeeTeamInfo = { /** * unique identifier for this team */ id?: string | undefined; /** * Team name */ name?: string | undefined; /** * Link to internal company team page */ url?: string | undefined; }; /** @internal */ export type EmployeeTeamInfo$Outbound = { id?: string | undefined; name?: string | undefined; url?: string | undefined; }; /** @internal */ export declare const EmployeeTeamInfo$outboundSchema: z.ZodType; export declare function employeeTeamInfoToJSON(employeeTeamInfo: EmployeeTeamInfo): string; //# sourceMappingURL=employeeteaminfo.d.ts.map