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 V3ThreathuntingValueCountsGlobals = { organizationId?: string | undefined; }; export type V3ThreathuntingValueCountsRequest = { /** * 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; searchValueCountsInputBody: components.SearchValueCountsInputBody; }; export type V3ThreathuntingValueCountsResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeValueCountsResponse; }; /** @internal */ export type V3ThreathuntingValueCountsRequest$Outbound = { organization_id?: string | undefined; SearchValueCountsInputBody: components.SearchValueCountsInputBody$Outbound; }; /** @internal */ export declare const V3ThreathuntingValueCountsRequest$outboundSchema: z.ZodType; export declare function v3ThreathuntingValueCountsRequestToJSON(v3ThreathuntingValueCountsRequest: V3ThreathuntingValueCountsRequest): string; /** @internal */ export declare const V3ThreathuntingValueCountsResponse$inboundSchema: z.ZodType; export declare function v3ThreathuntingValueCountsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3threathuntingvaluecounts.d.ts.map