import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ZLint = { /** * Whether the certificate's attributes triggered any error lints for non-conformance to the X.509 standard. */ errorsPresent?: boolean | undefined; /** * A list of lint names which failed, if applicable. */ failedLints?: Array | null | undefined; /** * Whether the certificate's attributes triggered any fatal lints for non-conformance to the X.509 standard. */ fatalsPresent?: boolean | undefined; /** * Whether the certificate's attributes triggered any notice lints for non-conformance to the X.509 standard. */ noticesPresent?: boolean | undefined; /** * An RFC-3339-formated timestamp indicating when the certificate was linted. */ timestamp?: string | undefined; /** * The version of Zlint used to lint the certificate. */ version?: number | undefined; /** * Whether the certificate's attributes triggered any warning lints for non-conformance to the X.509 standard. */ warningsPresent?: boolean | undefined; }; /** @internal */ export declare const ZLint$inboundSchema: z.ZodType; export declare function zLintFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=zlint.d.ts.map