import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { GreynoiseTag } from "./greynoisetag.js"; export type Greynoise = { /** * The actor that was observed. */ actor?: string | undefined; /** * The classification of the IP address. */ classification?: string | undefined; /** * The last time the IP address was observed. */ lastObservedTime?: string | undefined; /** * The tags associated with the IP address. */ tags?: Array | null | undefined; }; /** @internal */ export declare const Greynoise$inboundSchema: z.ZodType; export declare function greynoiseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=greynoise.d.ts.map