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