import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EstimatedActivity, EstimatedActivity$Outbound } from "./estimatedactivity.js"; export type MoneyTransferPullFromCard = { estimatedActivity?: EstimatedActivity | undefined; }; /** @internal */ export declare const MoneyTransferPullFromCard$inboundSchema: z.ZodType; /** @internal */ export type MoneyTransferPullFromCard$Outbound = { estimatedActivity?: EstimatedActivity$Outbound | undefined; }; /** @internal */ export declare const MoneyTransferPullFromCard$outboundSchema: z.ZodType; export declare function moneyTransferPullFromCardToJSON(moneyTransferPullFromCard: MoneyTransferPullFromCard): string; export declare function moneyTransferPullFromCardFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=moneytransferpullfromcard.d.ts.map