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 { Evidence } from "./evidence.js"; import { ThreatActor } from "./threatactor.js"; import { ThreatDetails } from "./threatdetails.js"; import { ThreatMalware } from "./threatmalware.js"; export declare const ThreatSource: { readonly Unknown: ""; readonly Censys: "censys"; readonly Recog: "recog"; readonly Wappalyzer: "wappalyzer"; readonly ThirdParty: "third_party"; readonly HtmlMetaExtractor: "html_meta_extractor"; }; export type ThreatSource = OpenEnum; export type Threat = { actors?: Array | null | undefined; confidence?: number | undefined; details?: ThreatDetails | undefined; evidence?: Array | null | undefined; id?: string | undefined; malware?: ThreatMalware | undefined; name?: string | undefined; source?: ThreatSource | undefined; tactic?: Array | null | undefined; type?: Array | null | undefined; }; /** @internal */ export declare const ThreatSource$inboundSchema: z.ZodType; /** @internal */ export declare const Threat$inboundSchema: z.ZodType; export declare function threatFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threat.d.ts.map