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 SendFundsPushToCard = { estimatedActivity?: EstimatedActivity | undefined; }; /** @internal */ export declare const SendFundsPushToCard$inboundSchema: z.ZodType; /** @internal */ export type SendFundsPushToCard$Outbound = { estimatedActivity?: EstimatedActivity$Outbound | undefined; }; /** @internal */ export declare const SendFundsPushToCard$outboundSchema: z.ZodType; export declare function sendFundsPushToCardToJSON(sendFundsPushToCard: SendFundsPushToCard): string; export declare function sendFundsPushToCardFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sendfundspushtocard.d.ts.map