import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RSACryptographicKey = { exponent?: string | undefined; length?: number | undefined; modulus?: string | undefined; }; /** @internal */ export declare const RSACryptographicKey$inboundSchema: z.ZodType; export declare function rsaCryptographicKeyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rsacryptographickey.d.ts.map