import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CenseyeTarget = { /** * SHA-256 fingerprint of the certificate to analyze. */ certificateId?: string | undefined; /** * IP address of the host to analyze. */ hostId?: string | undefined; /** * Web property identifier (hostname:port) to analyze. */ webpropertyId?: string | undefined; }; /** @internal */ export declare const CenseyeTarget$inboundSchema: z.ZodType; /** @internal */ export type CenseyeTarget$Outbound = { certificate_id?: string | undefined; host_id?: string | undefined; webproperty_id?: string | undefined; }; /** @internal */ export declare const CenseyeTarget$outboundSchema: z.ZodType; export declare function censeyeTargetToJSON(censeyeTarget: CenseyeTarget): string; export declare function censeyeTargetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=censeyetarget.d.ts.map