import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CVSSComponents } from "./cvsscomponents.js"; export type Cvss = { components?: CVSSComponents | undefined; /** * Score of the vulnerability; 0.1 is the lowest, 10 is the maximum */ score?: number | undefined; /** * The path, method, or scenario used to exploit the vulnerability. Each section represents components that contribute to the overall CVSS score. */ vector?: string | undefined; }; /** @internal */ export declare const Cvss$inboundSchema: z.ZodType; export declare function cvssFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cvss.d.ts.map