import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AddressError, AddressError$Outbound } from "./addresserror.js"; import { PhoneNumberError, PhoneNumberError$Outbound } from "./phonenumbererror.js"; export type CustomerSupportError = { phone?: PhoneNumberError | undefined; email?: string | undefined; address?: AddressError | undefined; website?: string | undefined; }; /** @internal */ export declare const CustomerSupportError$inboundSchema: z.ZodType; /** @internal */ export type CustomerSupportError$Outbound = { phone?: PhoneNumberError$Outbound | undefined; email?: string | undefined; address?: AddressError$Outbound | undefined; website?: string | undefined; }; /** @internal */ export declare const CustomerSupportError$outboundSchema: z.ZodType; export declare function customerSupportErrorToJSON(customerSupportError: CustomerSupportError): string; export declare function customerSupportErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customersupporterror.d.ts.map