import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PhoneNumberError, PhoneNumberError$Outbound } from "./phonenumbererror.js"; export type PayoutRecipientError = { email?: string | undefined; phone?: PhoneNumberError | undefined; }; /** @internal */ export declare const PayoutRecipientError$inboundSchema: z.ZodType; /** @internal */ export type PayoutRecipientError$Outbound = { email?: string | undefined; phone?: PhoneNumberError$Outbound | undefined; }; /** @internal */ export declare const PayoutRecipientError$outboundSchema: z.ZodType; export declare function payoutRecipientErrorToJSON(payoutRecipientError: PayoutRecipientError): string; export declare function payoutRecipientErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payoutrecipienterror.d.ts.map