import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TlsChain = { /** * SHA 256 fingerprint of the certificate in the certificate chain. */ fingerprintSha256?: string | undefined; /** * Distinguished name of the entity that has signed and issued the certificate. */ issuerDn?: string | undefined; /** * Distinguished name of the entity that the certificate belongs to. */ subjectDn?: string | undefined; }; /** @internal */ export declare const TlsChain$inboundSchema: z.ZodType; export declare function tlsChainFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tlschain.d.ts.map