import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type KeyUsage = { /** * Whether the keyCertSign bit is set. */ certificateSign?: boolean | undefined; /** * Whether the contentCommitment (formerly called nonRepudiation) bit is set. */ contentCommitment?: boolean | undefined; /** * Whether the cRLSign bit is set. */ crlSign?: boolean | undefined; /** * Whether the dataEncipherment bit is set. */ dataEncipherment?: boolean | undefined; /** * Whether the decipherOnly bit is set. */ decipherOnly?: boolean | undefined; /** * Whether the digitalSignature bit is set. */ digitalSignature?: boolean | undefined; /** * Whether the encipherOnly bit is set. */ encipherOnly?: boolean | undefined; /** * Whether the keyAgreement bit is set. */ keyAgreement?: boolean | undefined; /** * Whether the keyEncipherment bit is set. */ keyEncipherment?: boolean | undefined; /** * The integer value of the bitmask in the extension. */ value?: number | undefined; }; /** @internal */ export declare const KeyUsage$inboundSchema: z.ZodType; export declare function keyUsageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=keyusage.d.ts.map