import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Information about a team's email */ export type TeamEmail = { /** * An email address */ email: string; /** * An enum of `PRIMARY`, `SECONDARY`, `ONCALL`, `OTHER` */ type?: string | undefined; }; /** @internal */ export declare const TeamEmail$inboundSchema: z.ZodType; /** @internal */ export type TeamEmail$Outbound = { email: string; type: string; }; /** @internal */ export declare const TeamEmail$outboundSchema: z.ZodType; export declare function teamEmailToJSON(teamEmail: TeamEmail): string; export declare function teamEmailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=teamemail.d.ts.map