import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TicketContact = { email: string; name?: string | undefined; }; /** @internal */ export declare const TicketContact$inboundSchema: z.ZodType; /** @internal */ export type TicketContact$Outbound = { email: string; name?: string | undefined; }; /** @internal */ export declare const TicketContact$outboundSchema: z.ZodType; export declare function ticketContactToJSON(ticketContact: TicketContact): string; export declare function ticketContactFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ticketcontact.d.ts.map