import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CtRecord } from "./ctrecord.js"; export type Ct = { entries?: { [k: string]: CtRecord; } | undefined; }; /** @internal */ export declare const Ct$inboundSchema: z.ZodType; export declare function ctFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ct.d.ts.map