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"; import { Cpe } from "./cpe.js"; import { CPELifeCycle } from "./cpelifecycle.js"; import { Evidence } from "./evidence.js"; export declare const Source: { readonly Unknown: ""; readonly Censys: "censys"; readonly Recog: "recog"; readonly Wappalyzer: "wappalyzer"; readonly ThirdParty: "third_party"; readonly HtmlMetaExtractor: "html_meta_extractor"; }; export type Source = OpenEnum; export type Attribute = { components?: Array | null | undefined; confidence?: number | undefined; cpe?: string | undefined; edition?: string | undefined; evidence?: Array | null | undefined; lifeCycle?: CPELifeCycle | undefined; part?: string | undefined; product?: string | undefined; source?: Source | undefined; type?: Array | null | undefined; update?: string | undefined; vendor?: string | undefined; version?: string | undefined; }; /** @internal */ export declare const Source$inboundSchema: z.ZodType; /** @internal */ export declare const Attribute$inboundSchema: z.ZodType; export declare function attributeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=attribute.d.ts.map