import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { OnvifHostname } from "./onvifhostname.js"; import { OnvifService } from "./onvifservice.js"; export type Onvif = { hostname?: OnvifHostname | undefined; services?: Array | null | undefined; }; /** @internal */ export declare const Onvif$inboundSchema: z.ZodType; export declare function onvifFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=onvif.d.ts.map