import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MoneyTransferPullFromCard, MoneyTransferPullFromCard$Outbound } from "./moneytransferpullfromcard.js"; import { MoneyTransferPushToCard, MoneyTransferPushToCard$Outbound } from "./moneytransferpushtocard.js"; export type MoneyTransfer = { pullFromCard?: MoneyTransferPullFromCard | undefined; pushToCard?: MoneyTransferPushToCard | undefined; }; /** @internal */ export declare const MoneyTransfer$inboundSchema: z.ZodType; /** @internal */ export type MoneyTransfer$Outbound = { pullFromCard?: MoneyTransferPullFromCard$Outbound | undefined; pushToCard?: MoneyTransferPushToCard$Outbound | undefined; }; /** @internal */ export declare const MoneyTransfer$outboundSchema: z.ZodType; export declare function moneyTransferToJSON(moneyTransfer: MoneyTransfer): string; export declare function moneyTransferFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=moneytransfer.d.ts.map