import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ThreatActor = { allNames?: Array | null | undefined; id?: string | undefined; malpediaGroupId?: string | undefined; mitreGroupId?: string | undefined; primaryName?: string | undefined; }; /** @internal */ export declare const ThreatActor$inboundSchema: z.ZodType; export declare function threatActorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threatactor.d.ts.map