import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StunTurnAllocateErrorResponse } from "./stunturnallocateerrorresponse.js"; import { StunTurnAllocateSuccessResponse } from "./stunturnallocatesuccessresponse.js"; export type StunTurn = { allocateErrorResponse?: StunTurnAllocateErrorResponse | undefined; allocateSuccessResponse?: StunTurnAllocateSuccessResponse | undefined; responseType?: number | undefined; responseTypeName?: string | undefined; }; /** @internal */ export declare const StunTurn$inboundSchema: z.ZodType; export declare function stunTurnFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stunturn.d.ts.map