import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SnmpInterfaces = { /** * 1.3.6.1.2.1.2.1 - Number of network interfaces */ numIfaces?: number | undefined; }; /** @internal */ export declare const SnmpInterfaces$inboundSchema: z.ZodType; export declare function snmpInterfacesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=snmpinterfaces.d.ts.map