import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CPELifeCycle } from "./cpelifecycle.js"; export type Cpe = { cpe?: string | undefined; edition?: string | undefined; lifeCycle?: CPELifeCycle | undefined; part?: string | undefined; product?: string | undefined; update?: string | undefined; vendor?: string | undefined; version?: string | undefined; }; /** @internal */ export declare const Cpe$inboundSchema: z.ZodType; export declare function cpeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cpe.d.ts.map