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 MoneyTransferPullFromCardError = { estimatedActivity?: EstimatedActivityError | undefined; }; /** @internal */ export declare const MoneyTransferPullFromCardError$inboundSchema: z.ZodType; /** @internal */ export type MoneyTransferPullFromCardError$Outbound = { estimatedActivity?: EstimatedActivityError$Outbound | undefined; }; /** @internal */ export declare const MoneyTransferPullFromCardError$outboundSchema: z.ZodType; export declare function moneyTransferPullFromCardErrorToJSON(moneyTransferPullFromCardError: MoneyTransferPullFromCardError): string; export declare function moneyTransferPullFromCardErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=moneytransferpullfromcarderror.d.ts.map