import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3ThreathuntingThreatsListGlobals = { organizationId?: string | undefined; }; export type V3ThreathuntingThreatsListRequest = { /** * The ID of a Censys organization to associate the request with. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-find-and-use-your-organization-id-optional) for more information. */ organizationId?: string | undefined; /** * Optional CenQL filter to constrain threats list */ query?: string | undefined; }; export type V3ThreathuntingThreatsListResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeThreatsListResponse; }; /** @internal */ export type V3ThreathuntingThreatsListRequest$Outbound = { organization_id?: string | undefined; query?: string | undefined; }; /** @internal */ export declare const V3ThreathuntingThreatsListRequest$outboundSchema: z.ZodType; export declare function v3ThreathuntingThreatsListRequestToJSON(v3ThreathuntingThreatsListRequest: V3ThreathuntingThreatsListRequest): string; /** @internal */ export declare const V3ThreathuntingThreatsListResponse$inboundSchema: z.ZodType; export declare function v3ThreathuntingThreatsListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3threathuntingthreatslist.d.ts.map