import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ModbusMEIResponse = { conformityLevel?: number | undefined; moreFollows?: boolean | undefined; objects?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const ModbusMEIResponse$inboundSchema: z.ZodType; export declare function modbusMEIResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=modbusmeiresponse.d.ts.map