import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The team the person is currently in. */ export type Team = { /** * The unique identifier of the team. */ id?: string | null | undefined; /** * The name of the team. */ name?: string | null | undefined; }; /** @internal */ export declare const Team$inboundSchema: z.ZodType; /** @internal */ export type Team$Outbound = { id?: string | null | undefined; name?: string | null | undefined; }; /** @internal */ export declare const Team$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Team$ { /** @deprecated use `Team$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Team$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Team$Outbound` instead. */ type Outbound = Team$Outbound; } export declare function teamToJSON(team: Team): string; export declare function teamFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=team.d.ts.map