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