import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IpmiCommandPayloadCommandNumber = { /** * The human-readable name of the cmd + NetFn */ name?: string | undefined; /** * The raw value of the cmd value */ raw?: number | undefined; }; /** @internal */ export declare const IpmiCommandPayloadCommandNumber$inboundSchema: z.ZodType; export declare function ipmiCommandPayloadCommandNumberFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmicommandpayloadcommandnumber.d.ts.map