import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StunBindingErrorResponse } from "./stunbindingerrorresponse.js"; import { StunBindingSuccessResponse } from "./stunbindingsuccessresponse.js"; import { StunTurn } from "./stunturn.js"; export type Stun = { bindingErrorResponse?: StunBindingErrorResponse | undefined; bindingSuccessResponse?: StunBindingSuccessResponse | undefined; responseType?: number | undefined; responseTypeName?: string | undefined; turn?: StunTurn | undefined; }; /** @internal */ export declare const Stun$inboundSchema: z.ZodType; export declare function stunFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stun.d.ts.map