import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CertificateRevocationRevocationInfo } from "./certificaterevocationrevocationinfo.js"; export type CertificateRevocation = { crl?: CertificateRevocationRevocationInfo | undefined; ocsp?: CertificateRevocationRevocationInfo | undefined; }; /** @internal */ export declare const CertificateRevocation$inboundSchema: z.ZodType; export declare function certificateRevocationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=certificaterevocation.d.ts.map