import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IpmiSessionHeaderAuthType = { /** * The raw value of the auth_type */ name?: string | undefined; /** * The raw value of the auth_type */ raw?: number | undefined; /** * Just the auth type (reserved bits omitted) */ type?: number | undefined; }; /** @internal */ export declare const IpmiSessionHeaderAuthType$inboundSchema: z.ZodType; export declare function ipmiSessionHeaderAuthTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmisessionheaderauthtype.d.ts.map