import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IpmiCapabilitiesSupportedAuthTypes = { /** * If true, the extended capabilities are present. */ extended?: boolean | undefined; /** * True if the MD2 AuthType is supported. */ md2?: boolean | undefined; /** * True if the MD5 AuthType is supported. */ md5?: boolean | undefined; /** * True if the None AuthType is supported. */ none?: boolean | undefined; /** * True if the OEM Proprietary AuthType is supported */ oemProprietary?: boolean | undefined; /** * True if the Password AuthType is supported. */ password?: boolean | undefined; /** * The raw byte, with the bit mask etc */ raw?: number | undefined; }; /** @internal */ export declare const IpmiCapabilitiesSupportedAuthTypes$inboundSchema: z.ZodType; export declare function ipmiCapabilitiesSupportedAuthTypesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmicapabilitiessupportedauthtypes.d.ts.map