import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SnmpEngine } from "./snmpengine.js"; import { SnmpInterfaces } from "./snmpinterfaces.js"; import { SnmpPhysical } from "./snmpphysical.js"; import { SnmpSystem } from "./snmpsystem.js"; export type Snmp = { engine?: SnmpEngine | undefined; oidInterfaces?: SnmpInterfaces | undefined; oidPhysical?: SnmpPhysical | undefined; oidSystem?: SnmpSystem | undefined; versions?: Array | null | undefined; }; /** @internal */ export declare const Snmp$inboundSchema: z.ZodType; export declare function snmpFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=snmp.d.ts.map