import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Amount, Amount$Outbound } from "./amount.js"; import { SourceDestinationOptions, SourceDestinationOptions$Outbound } from "./sourcedestinationoptions.js"; export type CreateTransferOptions = { source: SourceDestinationOptions; destination: SourceDestinationOptions; amount: Amount; }; /** @internal */ export declare const CreateTransferOptions$inboundSchema: z.ZodType; /** @internal */ export type CreateTransferOptions$Outbound = { source: SourceDestinationOptions$Outbound; destination: SourceDestinationOptions$Outbound; amount: Amount$Outbound; }; /** @internal */ export declare const CreateTransferOptions$outboundSchema: z.ZodType; export declare function createTransferOptionsToJSON(createTransferOptions: CreateTransferOptions): string; export declare function createTransferOptionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createtransferoptions.d.ts.map