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