import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BasicConstraints = { /** * Whether the certificate is permitted to sign other certificates. */ isCa?: boolean | undefined; /** * When present, provides the maximum number of intermediate certificates that may follow this certificate in a trusted certification path. */ maxPathLen?: number | undefined; }; /** @internal */ export declare const BasicConstraints$inboundSchema: z.ZodType; export declare function basicConstraintsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=basicconstraints.d.ts.map