import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ModbusExceptionResponse } from "./modbusexceptionresponse.js"; import { ModbusMEIResponse } from "./modbusmeiresponse.js"; export type Modbus = { exceptionResponse?: ModbusExceptionResponse | undefined; function?: number | undefined; meiResponse?: ModbusMEIResponse | undefined; unitId?: number | undefined; }; /** @internal */ export declare const Modbus$inboundSchema: z.ZodType; export declare function modbusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=modbus.d.ts.map