import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Sip = { code?: number | undefined; /** * Server software reported by service */ server?: string | undefined; status?: string | undefined; /** * SIP version */ version?: string | undefined; }; /** @internal */ export declare const Sip$inboundSchema: z.ZodType; export declare function sipFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sip.d.ts.map