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