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