import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type KeyAlgorithm = { /** * Name of public key type, such as RSA or ECDSA. Information specific to the key type is available in the named sub-record. */ name?: string | undefined; oid?: string | undefined; }; /** @internal */ export declare const KeyAlgorithm$inboundSchema: z.ZodType; export declare function keyAlgorithmFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=keyalgorithm.d.ts.map