import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SourceDestinationOptions = { accountID?: string | undefined; paymentMethodID?: string | undefined; }; /** @internal */ export declare const SourceDestinationOptions$inboundSchema: z.ZodType; /** @internal */ export type SourceDestinationOptions$Outbound = { accountID?: string | undefined; paymentMethodID?: string | undefined; }; /** @internal */ export declare const SourceDestinationOptions$outboundSchema: z.ZodType; export declare function sourceDestinationOptionsToJSON(sourceDestinationOptions: SourceDestinationOptions): string; export declare function sourceDestinationOptionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sourcedestinationoptions.d.ts.map