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