import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CtRecord = { /** * An RFC-3339-formatted timestamp indicating when the certificate was entered into the CT log. */ addedToCtAt?: string | undefined; /** * An RFC-3339-formated timestamp indicating when the certificate was ingested from the CT log into the Censys dataset. */ ctToCensysAt?: string | undefined; /** * Numerical marker of the certificate's place in the CT log. */ index?: number | undefined; }; /** @internal */ export declare const CtRecord$inboundSchema: z.ZodType; export declare function ctRecordFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ctrecord.d.ts.map