import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ThreatDetails = { campaignId?: string | undefined; campaignTheme?: string | undefined; controlServers?: Array | null | undefined; version?: string | undefined; }; /** @internal */ export declare const ThreatDetails$inboundSchema: z.ZodType; export declare function threatDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threatdetails.d.ts.map