import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MoneroP2PPayload } from "./monerop2ppayload.js"; import { MoneroP2PResponseHeader } from "./monerop2presponseheader.js"; export type MoneroP2PPingResponse = { payload?: MoneroP2PPayload | undefined; responseHeader?: MoneroP2PResponseHeader | undefined; }; /** @internal */ export declare const MoneroP2PPingResponse$inboundSchema: z.ZodType; export declare function moneroP2PPingResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=monerop2ppingresponse.d.ts.map