import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EstimatedActivityError, EstimatedActivityError$Outbound } from "./estimatedactivityerror.js"; export type MoneyTransferPushToCardError = { estimatedActivity?: EstimatedActivityError | undefined; }; /** @internal */ export declare const MoneyTransferPushToCardError$inboundSchema: z.ZodType; /** @internal */ export type MoneyTransferPushToCardError$Outbound = { estimatedActivity?: EstimatedActivityError$Outbound | undefined; }; /** @internal */ export declare const MoneyTransferPushToCardError$outboundSchema: z.ZodType; export declare function moneyTransferPushToCardErrorToJSON(moneyTransferPushToCardError: MoneyTransferPushToCardError): string; export declare function moneyTransferPushToCardErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=moneytransferpushtocarderror.d.ts.map