import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StunMappedAddress } from "./stunmappedaddress.js"; export type StunBindingSuccessResponse = { hasFingerprint?: boolean | undefined; otherAddress?: StunMappedAddress | undefined; software?: string | undefined; }; /** @internal */ export declare const StunBindingSuccessResponse$inboundSchema: z.ZodType; export declare function stunBindingSuccessResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stunbindingsuccessresponse.d.ts.map