import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The source checked to determine whether the CVE is in the KEV catalog. */ export declare const KEVSource: { readonly Unknown: ""; readonly Cisa: "cisa"; readonly ThirdParty: "third_party"; }; /** * The source checked to determine whether the CVE is in the KEV catalog. */ export type KEVSource = OpenEnum; export type Kev = { /** * The date the vulnerability was added to the KEV catalog. */ dateAdded?: string | undefined; /** * Per CISA’s Binding Operation Directive 22-01, the date all federal civilian executive branch (FCEB) agencies are required to remediate vulnerabilities in the KEV catalog. */ dateDue?: string | undefined; /** * The source checked to determine whether the CVE is in the KEV catalog. */ source?: KEVSource | undefined; }; /** @internal */ export declare const KEVSource$inboundSchema: z.ZodType; /** @internal */ export declare const Kev$inboundSchema: z.ZodType; export declare function kevFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=kev.d.ts.map