import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Scpi = { firmware?: string | undefined; manufacturer?: string | undefined; model?: string | undefined; serial?: string | undefined; }; /** @internal */ export declare const Scpi$inboundSchema: z.ZodType; export declare function scpiFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=scpi.d.ts.map