import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ThreatListItem } from "./threatlistitem.js"; export type ThreatsListResponse = { /** * List of active threats observed on the platform. */ threats: Array | null; }; /** @internal */ export declare const ThreatsListResponse$inboundSchema: z.ZodType; export declare function threatsListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=threatslistresponse.d.ts.map