import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PayoutRecipientError, PayoutRecipientError$Outbound } from "./payoutrecipienterror.js"; export type PayoutDetailsError = { allowedMethods?: string | undefined; recipient?: PayoutRecipientError | undefined; metadata?: string | undefined; }; /** @internal */ export declare const PayoutDetailsError$inboundSchema: z.ZodType; /** @internal */ export type PayoutDetailsError$Outbound = { allowedMethods?: string | undefined; recipient?: PayoutRecipientError$Outbound | undefined; metadata?: string | undefined; }; /** @internal */ export declare const PayoutDetailsError$outboundSchema: z.ZodType; export declare function payoutDetailsErrorToJSON(payoutDetailsError: PayoutDetailsError): string; export declare function payoutDetailsErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payoutdetailserror.d.ts.map