import * as z from "zod/v3"; import { TeamInfoDefinition, TeamInfoDefinition$Outbound } from "./teaminfodefinition.js"; /** * Info about a team and optional version for that info */ export type IndexTeamRequest = { /** * Information about an employee's team */ team: TeamInfoDefinition; /** * Version number for the team object. If absent or 0 then no version checks are done */ version?: number | undefined; }; /** @internal */ export type IndexTeamRequest$Outbound = { team: TeamInfoDefinition$Outbound; version?: number | undefined; }; /** @internal */ export declare const IndexTeamRequest$outboundSchema: z.ZodType; export declare function indexTeamRequestToJSON(indexTeamRequest: IndexTeamRequest): string; //# sourceMappingURL=indexteamrequest.d.ts.map